summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2005-12-09 17:02:13 +0000
committerDmitry Stogov <dmitry@php.net>2005-12-09 17:02:13 +0000
commitc502abde01c67f7079dde7da10e87389b898e51a (patch)
treeb5be4ddcd07bc5fe546f4dbe6ca439508a62975b
parentfd10ad58970dca16bfbed82c76bf24f892cbd2dd (diff)
downloadphp-git-c502abde01c67f7079dde7da10e87389b898e51a.tar.gz
Fixed bug #34429 (Output buffering cannot be turned off with FastCGI)
-rw-r--r--NEWS2
-rw-r--r--sapi/cgi/cgi_main.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 752857e0f1..eb11097953 100644
--- a/NEWS
+++ b/NEWS
@@ -55,6 +55,8 @@ PHP NEWS
- Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception). (Dmitry)
- Fixed bug #34450 (Segfault when calling mysqli_close() in destructor). (Tony)
- Fixed bug #34449 (ext/soap: XSD_ANYXML functionality not exposed). (Dmitry)
+- Fixed bug #34429 (Output buffering cannot be turned off with FastCGI).
+ (Dmitry, Ilya)
- Fixed Bug #34243 (ReflectionClass::getDocComment() returns no result).
(Marcus)
- Fixed bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler).
diff --git a/sapi/cgi/cgi_main.c b/sapi/cgi/cgi_main.c
index 4de40ed88c..a8c807073f 100644
--- a/sapi/cgi/cgi_main.c
+++ b/sapi/cgi/cgi_main.c
@@ -1257,6 +1257,8 @@ consult the installation file that came with this distribution, or visit \n\
running--;
}
}
+ } else {
+ parent = 0;
}
#endif /* WIN32 */