cvs: ZendEngine2(PHP_5_3) / zend_list.c
"Dmitry Stogov" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.zend |
|---|---|
| Message-ID | <cvsdmitry1219335704@cvsserver> |
dmitry Thu Aug 21 16:21:44 2008 UTC
Modified files: (Branch: PHP_5_3)
/ZendEngine2 zend_list.c
Log:
Fixed destruction of dl() loaded extensions
http://cvs.php.net/viewvc.cgi/ZendEngine2/zend_list.c?r1=1.66.2.1.2.1.2.1&r2=1.66.2.1.2.1.2.2&diff_format=u
Index: ZendEngine2/zend_list.c
diff -u ZendEngine2/zend_list.c:1.66.2.1.2.1.2.1 ZendEngine2/zend_list.c:1.66.2.1.2.1.2.2
--- ZendEngine2/zend_list.c:1.66.2.1.2.1.2.1 Mon Dec 31 07:17:04 2007
+++ ZendEngine2/zend_list.c Thu Aug 21 16:21:43 2008
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_list.c,v 1.66.2.1.2.1.2.1 2007/12/31 07:17:04 sebastian Exp $ */
+/* $Id: zend_list.c,v 1.66.2.1.2.1.2.2 2008/08/21 16:21:43 dmitry Exp $ */
/* resource lists */
@@ -253,7 +253,10 @@
static int zend_clean_module_rsrc_dtors_cb(zend_rsrc_list_dtors_entry *ld, int *module_number TSRMLS_DC)
{
if (ld->module_number == *module_number) {
+#if 0
+ /* EG(resource_list) is already destroied in this point */
zend_hash_apply_with_argument(&EG(regular_list), (apply_func_arg_t) clean_module_resource, (void *) &(ld->resource_id) TSRMLS_CC);
+#endif
zend_hash_apply_with_argument(&EG(persistent_list), (apply_func_arg_t) clean_module_resource, (void *) &(ld->resource_id) TSRMLS_CC);
return 1;
} else {
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php