ffserver: fix NULL dereference with quoted Stream name.

pull/8/head
Clément Bœsch 12 years ago committed by Clément Bœsch
parent a9ba9268d7
commit 26afdbcfc0
  1. 2
      ffserver.c

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

Loading…
Cancel
Save