From: Andi Gutmans Date: Wed, 26 May 2004 18:00:27 +0000 (+0000) Subject: - Use FREE_HASHTABLE instead of efree() X-Git-Tag: php-5.0.0RC3RC1~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5daf7078e8a6af0cd84396f19cacbfb072f4768;p=php - Use FREE_HASHTABLE instead of efree() --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 1c31c2766d..6fcab6d761 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -2153,7 +2153,7 @@ void php_call_shutdown_functions(void) zend_hash_apply(BG(user_shutdown_function_names), (apply_func_t) user_shutdown_function_call TSRMLS_CC); memcpy(&EG(bailout), &orig_bailout, sizeof(jmp_buf)); zend_hash_destroy(BG(user_shutdown_function_names)); - efree(BG(user_shutdown_function_names)); + FREE_HASHTABLE(BG(user_shutdown_function_names)); } zend_end_try(); }