dmitry          Fri Dec  9 12:02:13 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /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.1760.2.525&r2=1.1760.2.526&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.525 php-src/NEWS:1.1760.2.526
--- php-src/NEWS:1.1760.2.525   Mon Dec  5 08:19:42 2005
+++ php-src/NEWS        Fri Dec  9 12:02:10 2005
@@ -55,6 +55,8 @@
 - 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).
http://cvs.php.net/diff.php/php-src/sapi/cgi/cgi_main.c?r1=1.256.2.7&r2=1.256.2.8&ty=u
Index: php-src/sapi/cgi/cgi_main.c
diff -u php-src/sapi/cgi/cgi_main.c:1.256.2.7 
php-src/sapi/cgi/cgi_main.c:1.256.2.8
--- php-src/sapi/cgi/cgi_main.c:1.256.2.7       Thu Oct  6 16:36:44 2005
+++ php-src/sapi/cgi/cgi_main.c Fri Dec  9 12:02:13 2005
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: cgi_main.c,v 1.256.2.7 2005/10/06 20:36:44 johannes Exp $ */
+/* $Id: cgi_main.c,v 1.256.2.8 2005/12/09 17:02:13 dmitry Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -1257,6 +1257,8 @@
                                running--;
                        }
                }
+       } else {
+               parent = 0;
        }
 
 #endif /* WIN32 */

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to