ffserver: make statement block unconditional by exiting early

Signed-off-by: 's avatarReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
parent 36a617c1
...@@ -3771,15 +3771,16 @@ static void compute_bandwidth(void) ...@@ -3771,15 +3771,16 @@ static void compute_bandwidth(void)
static void handle_child_exit(int sig) static void handle_child_exit(int sig)
{ {
pid_t pid; pid_t pid;
int status; int status, uptime;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { while ((pid = waitpid(-1, &status, WNOHANG)) > 0) {
FFServerStream *feed; FFServerStream *feed;
for (feed = config.first_feed; feed; feed = feed->next) { for (feed = config.first_feed; feed; feed = feed->next) {
if (feed->pid == pid) { if (feed->pid != pid)
int uptime = time(0) - feed->pid_start; continue;
uptime = time(0) - feed->pid_start;
feed->pid = 0; feed->pid = 0;
fprintf(stderr, fprintf(stderr,
"%s: Pid %d exited with status %d after %d seconds\n", "%s: Pid %d exited with status %d after %d seconds\n",
...@@ -3790,7 +3791,6 @@ static void handle_child_exit(int sig) ...@@ -3790,7 +3791,6 @@ static void handle_child_exit(int sig)
ffserver_free_child_args(&feed->child_argv); ffserver_free_child_args(&feed->child_argv);
} }
} }
}
need_to_start_children = 1; need_to_start_children = 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment