summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */