diff options
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 5e6037c..2c5455b 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1457,6 +1457,11 @@ static void send_cgi_and_exit( } } #endif + /* restore default signal dispositions for CGI process */ + signal(SIGCHLD, SIG_DFL); + signal(SIGPIPE, SIG_DFL); + signal(SIGHUP, SIG_DFL); + execv(fullpath, argv); if (verbose) bb_perror_msg("exec %s", fullpath); |