diff options
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index b4a8d277b..ed699df48 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -1457,6 +1457,13 @@ static void send_cgi_and_exit( | |||
1457 | } | 1457 | } |
1458 | } | 1458 | } |
1459 | #endif | 1459 | #endif |
1460 | /* restore default signal dispositions for CGI process */ | ||
1461 | bb_signals(0 | ||
1462 | | (1 << SIGCHLD) | ||
1463 | | (1 << SIGPIPE) | ||
1464 | | (1 << SIGHUP) | ||
1465 | , SIG_DFL); | ||
1466 | |||
1460 | execv(fullpath, argv); | 1467 | execv(fullpath, argv); |
1461 | if (verbose) | 1468 | if (verbose) |
1462 | bb_perror_msg("exec %s", fullpath); | 1469 | bb_perror_msg("exec %s", fullpath); |