helly           Sun Jul 25 03:14:51 2004 EDT

  Modified files:              
    /php-src/main       main.c 
  Log:
  - Execute destructors earlier (Florian Schaper, fschaper at intux org)
  
http://cvs.php.net/diff.php/php-src/main/main.c?r1=1.605&r2=1.606&ty=u
Index: php-src/main/main.c
diff -u php-src/main/main.c:1.605 php-src/main/main.c:1.606
--- php-src/main/main.c:1.605   Thu Jul 15 18:22:06 2004
+++ php-src/main/main.c Sun Jul 25 03:14:49 2004
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: main.c,v 1.605 2004/07/15 22:22:06 helly Exp $ */
+/* $Id: main.c,v 1.606 2004/07/25 07:14:49 helly Exp $ */
 
 /* {{{ includes
  */
@@ -1188,6 +1188,10 @@
 
        zend_try {
                sapi_send_headers(TSRMLS_C);
+       } zend_end_try();
+
+       zend_try {
+               zend_call_destructors(TSRMLS_C);
        } zend_end_try();
 
        if (PG(modules_activated)) zend_try {

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

Reply via email to