summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-05-24 20:39:55 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-05-24 20:39:55 +0000
commita78f2ccdd6eb1c2911073226cceac6e7a441e735 (patch)
treec8164b4cf33946be83741a2fd33edea51624d81e /libavfilter
parenta64821f4e525a363e9d868b84ef4bcd717efc427 (diff)
Proper handling of trailing whitespaces
Commited in SoC by Vitor Sessak on 2008-04-10 21:29:33 Originally committed as revision 13308 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/graphparser.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index c1304e7f0c..49a8bb1569 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -120,6 +120,8 @@ static char *consume_string(const char **buf)
case '[':
case '=':
case ',':
+ case ' ':
+ case '\n':
*out++= 0;
break;
default:
@@ -128,6 +130,8 @@ static char *consume_string(const char **buf)
} while(out[-1]);
(*buf)--;
+ consume_whitespace(buf);
+
return ret;
}