[FFmpeg-cvslog] r13348 - trunk/libavfilter/graphparser.c

vitor subversion
Sat May 24 22:41:57 CEST 2008


Author: vitor
Date: Sat May 24 22:41:57 2008
New Revision: 13348

Log:
10l: fix previous commit
Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05


Modified:
   trunk/libavfilter/graphparser.c

Modified: trunk/libavfilter/graphparser.c
==============================================================================
--- trunk/libavfilter/graphparser.c	(original)
+++ trunk/libavfilter/graphparser.c	Sat May 24 22:41:57 2008
@@ -165,9 +165,10 @@ static AVFilterContext *parse_filter(con
     char *opts = NULL;
     char *name = consume_string(buf);
 
-    if(**buf == '=')
+    if(**buf == '=') {
         (*buf)++;
         opts = consume_string(buf);
+    }
 
     return create_filter(graph, index, name, opts, log_ctx);
 }




More information about the ffmpeg-cvslog mailing list