ffserver: fix NULL dereference with quoted Stream name.

This commit is contained in:
Clément Bœsch 2012-11-14 11:03:56 +02:00 committed by Clément Bœsch
parent a9ba9268d7
commit 26afdbcfc0

View File

@ -4270,7 +4270,7 @@ static int parse_ffconfig(const char *filename)
stream = av_mallocz(sizeof(FFStream));
get_arg(stream->filename, sizeof(stream->filename), &p);
q = strrchr(stream->filename, '>');
if (*q)
if (q)
*q = '\0';
for (s = first_stream; s; s = s->next) {