dmitry Fri Dec 9 12:01:50 2005 EDT
Modified files: (Branch: PHP_5_1)
/php-src NEWS
/php-src/sapi/cgi cgi_main.c
Log:
Fixed bug #34429 (Output buffering cannot be turned off with FastCGI)
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.280&r2=1.2027.2.281&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.280 php-src/NEWS:1.2027.2.281
--- php-src/NEWS:1.2027.2.280 Wed Dec 7 22:25:21 2005
+++ php-src/NEWS Fri Dec 9 12:01:48 2005
@@ -63,6 +63,8 @@
(Nuno, Ilia)
- Fixed bug #35028 (SimpleXML object fails FALSE test). (Marcus)
- Fixed bug #34729 (Crash in ZTS mode under Apache). (Dmitry, Zeev)
+- Fixed bug #34429 (Output buffering cannot be turned off with FastCGI).
+ (Dmitry, Ilya)
- Fixed bug #34359 (Possible crash inside fopen http wrapper). (Ilia,Sara,Nuno)
- Fixed bug #30760 (Remove MessageBox on win32 for E_CORE errors if
display_startup_error is off). (Ilia)
http://cvs.php.net/diff.php/php-src/sapi/cgi/cgi_main.c?r1=1.267.2.3&r2=1.267.2.4&ty=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.267.2.3
php-src/sapi/cgi/cgi_main.c:1.267.2.4
--- php-src/sapi/cgi/cgi_main.c:1.267.2.3 Fri Dec 2 20:28:16 2005
+++ php-src/sapi/cgi/cgi_main.c Fri Dec 9 12:01:50 2005
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: cgi_main.c,v 1.267.2.3 2005/12/03 01:28:16 sniper Exp $ */
+/* $Id: cgi_main.c,v 1.267.2.4 2005/12/09 17:01:50 dmitry Exp $ */
#include "php.h"
#include "php_globals.h"
@@ -1248,6 +1248,8 @@
running--;
}
}
+ } else {
+ parent = 0;
}
#endif /* WIN32 */
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php