From: Stanislav Malyshev Date: Tue, 14 Oct 2003 14:36:23 +0000 (+0000) Subject: The freed one is a hashtable - may matter if Hashtables are allocated X-Git-Tag: RELEASE_1_3b3~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6a71c1d33fdeb9650895e926a95822fff506bf94;p=php The freed one is a hashtable - may matter if Hashtables are allocated differently --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index fcff45adb0..150b4f4a39 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -264,7 +264,7 @@ void shutdown_executor(TSRMLS_D) while (EG(symtable_cache_ptr)>=EG(symtable_cache)) { zend_hash_destroy(*EG(symtable_cache_ptr)); - efree(*EG(symtable_cache_ptr)); + FREE_HASHTABLE(*EG(symtable_cache_ptr)); EG(symtable_cache_ptr)--; } } zend_end_try();