mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Add missing check to av_get_token().
Originally committed as revision 23594 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
297084275c
commit
5ba949fe90
@ -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…
Reference in New Issue
Block a user