From: Dmitry Stogov Date: Thu, 21 Jun 2007 08:40:43 +0000 (+0000) Subject: no need to return exit status of the last fastcgi request X-Git-Tag: php-5.2.4RC1~317 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5d2180835aced8969da9b3a9462265c656082b6a;p=php no need to return exit status of the last fastcgi request --- diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c index 3e70e45523..67559d6895 100644 --- a/sapi/cgi/cgi_main.c +++ b/sapi/cgi/cgi_main.c @@ -1834,6 +1834,10 @@ fastcgi_request_done: if (bindpath) { free(bindpath); } + if (max_requests != 1) { + /* no need to return exit_status of the last request */ + exit_status = 0; + } break; } /* end of fastcgi loop */