check that redirect is set, fixes CID13 RUN2

Originally committed as revision 13524 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Baptiste Coudurier 17 years ago
parent 7e183a93d8
commit a9c1bb711b
  1. 3
      ffserver.c

@ -4274,13 +4274,14 @@ static int parse_ffconfig(const char *filename)
fprintf(stderr, "%s:%d: No corresponding <Redirect> for </Redirect>\n", fprintf(stderr, "%s:%d: No corresponding <Redirect> for </Redirect>\n",
filename, line_num); filename, line_num);
errors++; errors++;
} } else {
if (!redirect->feed_filename[0]) { if (!redirect->feed_filename[0]) {
fprintf(stderr, "%s:%d: No URL found for <Redirect>\n", fprintf(stderr, "%s:%d: No URL found for <Redirect>\n",
filename, line_num); filename, line_num);
errors++; errors++;
} }
redirect = NULL; redirect = NULL;
}
} else if (!strcasecmp(cmd, "LoadModule")) { } else if (!strcasecmp(cmd, "LoadModule")) {
get_arg(arg, sizeof(arg), &p); get_arg(arg, sizeof(arg), &p);
#ifdef HAVE_DLOPEN #ifdef HAVE_DLOPEN

Loading…
Cancel
Save