r2136@chromobil: stefan | 2008-02-28 22:18:14 +0100

Fix sending source of cgi script instead of 500 error if fork fails


git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2107 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Stefan Bühler 2008-02-28 21:19:24 +00:00
parent 0adc0af5fd
commit c065f36bc1
2 changed files with 2 additions and 0 deletions

1
NEWS
View File

@ -45,6 +45,7 @@ NEWS
* remove compress cache file if compression or write failed (#1150)
* fixed body handling of status 300 requests
* spawn-fcgi: only try to connect to unix socket (not tcp) before spawning (#1575)
* fix sending source of cgi script instead of 500 error if fork fails
- 1.4.18 - 2007-09-09

View File

@ -1004,6 +1004,7 @@ static int cgi_create_env(server *srv, connection *con, plugin_data *p, buffer *
case -1:
/* error */
log_error_write(srv, __FILE__, __LINE__, "ss", "fork failed:", strerror(errno));
return -1;
break;
default: {
handler_ctx *hctx;