diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-02 06:16:20 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-02 06:16:20 +0000 |
commit | 7deb44e36d98395af07e629ad9b646e0adb8cf55 (patch) | |
tree | e77f3b7db550bdad9d19013c18a1ac88af22593f /Zend/zend_execute_API.c | |
parent | 37a3490f33315dde55b3aa7eb2ced860148c967f (diff) | |
download | php-git-7deb44e36d98395af07e629ad9b646e0adb8cf55.tar.gz |
Some cleanup
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index cf15349fec..6ee4fd9634 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -177,9 +177,10 @@ void shutdown_executor(TSRMLS_D) zend_hash_apply(EG(class_table), (apply_func_t) is_not_internal_class TSRMLS_CC); } zend_end_try(); - zend_destroy_rsrc_list(TSRMLS_C); /* must be destroyed after the main symbol table and - * op arrays are destroyed. - */ + /* The regular list must be destroyed after the main symbol table and + * op arrays are destroyed. + */ + zend_destroy_rsrc_list(&EG(regular_list) TSRMLS_CC); zend_try { clean_non_persistent_constants(TSRMLS_C); |