From a3087ca7495e33b19b122869d17defeb9c933d19 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 8 May 2008 15:26:06 +0000 Subject: Apply post-1.10.1 patches Bump version to 1.10.2 --- networking/httpd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'networking/httpd.c') 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); -- cgit v1.1