diff options
| author | Wez Furlong <wez@php.net> | 2005-03-15 23:46:29 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2005-03-15 23:46:29 +0000 |
| commit | 35b0b8de99ce7d759f24618715ec57ffd950d54e (patch) | |
| tree | ec9876880063bcb744338229469f1693f8acc242 /Zend/zend.c | |
| parent | 06667585b54983831c8175e04f900735e68c06db (diff) | |
| download | php-git-35b0b8de99ce7d759f24618715ec57ffd950d54e.tar.gz | |
fix shutdown so that dl()'d modules are unloaded after all the dtors have
been called.
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 2b28a21eb5..0000caeff4 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -844,6 +844,7 @@ static int exec_done_cb(zend_module_entry *module TSRMLS_DC) void zend_post_deactivate_modules(TSRMLS_D) { zend_hash_apply(&module_registry, (apply_func_t) exec_done_cb TSRMLS_CC); + zend_hash_apply(&module_registry, (apply_func_t) module_registry_unload_temp TSRMLS_CC); } |
