Skip to content

Commit c502abd

Browse files
committed
Fixed bug #34429 (Output buffering cannot be turned off with FastCGI)
1 parent fd10ad5 commit c502abd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ PHP NEWS
5555
- Fixed bug #34453 (parsing http://www.w3.org/2001/xml.xsd exception). (Dmitry)
5656
- Fixed bug #34450 (Segfault when calling mysqli_close() in destructor). (Tony)
5757
- Fixed bug #34449 (ext/soap: XSD_ANYXML functionality not exposed). (Dmitry)
58+
- Fixed bug #34429 (Output buffering cannot be turned off with FastCGI).
59+
(Dmitry, Ilya)
5860
- Fixed Bug #34243 (ReflectionClass::getDocComment() returns no result).
5961
(Marcus)
6062
- Fixed bug #34199 (if($obj)/if(!$obj) inconsistency because of cast handler).

sapi/cgi/cgi_main.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,6 +1257,8 @@ consult the installation file that came with this distribution, or visit \n\
12571257
running--;
12581258
}
12591259
}
1260+
} else {
1261+
parent = 0;
12601262
}
12611263

12621264
#endif /* WIN32 */

0 commit comments

Comments
 (0)