diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:35 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-05-24 20:40:35 +0000 |
commit | dbec351d9f859e753ff6c1f11032a30f5b7786a6 (patch) | |
tree | 93fa3b23251b220f1e33d44805bf32b3aa2aa633 | |
parent | dd8e311e70aee2860daece39f2a36466c8fd1fcc (diff) | |
download | ffmpeg-dbec351d9f859e753ff6c1f11032a30f5b7786a6.tar.gz |
A semi-colon is also a string end
Commited in SoC by Vitor Sessak on 2008-04-21 18:40:05
Originally committed as revision 13321 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/graphparser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 714ab276bb..c28d912163 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -107,6 +107,7 @@ static char *consume_string(const char **buf) case '[': case '=': case ',': + case ';': case ' ': case '\n': *out++= 0; |