OSDN Git Service

avutil/log: skip IO calls on empty strings
[android-x86/external-ffmpeg.git] / libavutil / log.c
index 56ef53b..fa65b9f 100644 (file)
@@ -109,6 +109,9 @@ static int use_color = -1;
 
 static void colored_fputs(int level, const char *str)
 {
+    if (!*str)
+        return;
+
     if (use_color < 0) {
 #if HAVE_SETCONSOLETEXTATTRIBUTE
         CONSOLE_SCREEN_BUFFER_INFO con_info;