[SCM] libav/experimental: 10l: fix previous commit Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:21:32 UTC 2013


The following commit has been merged in the experimental branch:
commit 12849837d4fbd82afb78358fe73c99882f1ade8f
Author: Vitor Sessak <vitor1001 at gmail.com>
Date:   Sat May 24 20:41:57 2008 +0000

    10l: fix previous commit
    Commited in SoC by Vitor Sessak on 2008-05-24 13:06:05
    
    Originally committed as revision 13348 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 926ab69..ad1c5fa 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -165,9 +165,10 @@ static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
     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);
 }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list