Browse Source

Add missing check to av_get_token().

Originally committed as revision 23594 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Stefano Sabatini 15 years ago
parent
commit
5ba949fe90
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      libavfilter/parseutils.c

+ 1
- 0
libavfilter/parseutils.c View File

@@ -34,6 +34,7 @@ char *av_get_token(const char **buf, const char *term)
char *out = av_malloc(strlen(*buf) + 1);
char *ret= out, *end= out;
const char *p = *buf;
if (!out) return NULL;
p += strspn(p, WHITESPACES);

while(*p && !strspn(p, term)) {


Loading…
Cancel
Save