dmitry          Thu Feb 28 16:59:21 2008 UTC

  Modified files:              
    /php-src/ext/standard       dl.c 
  Log:
  We don't nave to change request shutdown sequence if dl() was failed
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/dl.c?r1=1.124&r2=1.125&diff_format=u
Index: php-src/ext/standard/dl.c
diff -u php-src/ext/standard/dl.c:1.124 php-src/ext/standard/dl.c:1.125
--- php-src/ext/standard/dl.c:1.124     Sat Feb 23 17:03:53 2008
+++ php-src/ext/standard/dl.c   Thu Feb 28 16:59:21 2008
@@ -18,7 +18,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: dl.c,v 1.124 2008/02/23 17:03:53 helly Exp $ */
+/* $Id: dl.c,v 1.125 2008/02/28 16:59:21 dmitry Exp $ */
 
 #include "php.h"
 #include "dl.h"
@@ -78,7 +78,9 @@
        }
 
        php_dl(filename, MODULE_TEMPORARY, return_value, 0 TSRMLS_CC);
-       EG(full_tables_cleanup) = 1;
+       if (Z_LVAL_P(return_value) == 1) {
+               EG(full_tables_cleanup) = 1;
+       }
 }
 /* }}} */
 

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

Reply via email to