andi            Sun May 23 12:02:36 2004 EDT

  Modified files:              
    /php-src/main       main.c 
  Log:
  - Fixed bug #27640 memory leak of registered_zend_ini_directives  (Dmitry)
  
  
http://cvs.php.net/diff.php/php-src/main/main.c?r1=1.602&r2=1.603&ty=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.602 php-src/main/main.c:1.603
--- php-src/main/main.c:1.602   Thu May 20 06:24:39 2004
+++ php-src/main/main.c Sun May 23 12:02:36 2004
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: main.c,v 1.602 2004/05/20 10:24:39 derick Exp $ */
+/* $Id: main.c,v 1.603 2004/05/23 16:02:36 andi Exp $ */
 
 /* {{{ includes
  */
@@ -1529,6 +1529,8 @@
 #ifndef ZTS
        zend_ini_shutdown(TSRMLS_C);
        shutdown_memory_manager(CG(unclean_shutdown), 1 TSRMLS_CC);
+#else
+       zend_ini_global_shutdown(TSRMLS_C);
 #endif
 
        module_initialized = 0;

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

Reply via email to