dmitry Thu Feb 28 16:59:10 2008 UTC Modified files: (Branch: PHP_5_3) /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.106.2.1.2.5.2.5&r2=1.106.2.1.2.5.2.6&diff_format=u Index: php-src/ext/standard/dl.c diff -u php-src/ext/standard/dl.c:1.106.2.1.2.5.2.5 php-src/ext/standard/dl.c:1.106.2.1.2.5.2.6 --- php-src/ext/standard/dl.c:1.106.2.1.2.5.2.5 Sat Feb 23 17:06:21 2008 +++ php-src/ext/standard/dl.c Thu Feb 28 16:59:10 2008 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: dl.c,v 1.106.2.1.2.5.2.5 2008/02/23 17:06:21 helly Exp $ */ +/* $Id: dl.c,v 1.106.2.1.2.5.2.6 2008/02/28 16:59:10 dmitry Exp $ */ #include "php.h" #include "dl.h" @@ -85,7 +85,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