From: foobar Date: Mon, 20 Dec 2004 19:15:24 +0000 (+0000) Subject: MFH: Use FREE_HASHTABLE() instead of efree() X-Git-Tag: php-4.3.11RC1~247 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fe420def0c62d887070fd1c34b5646f6fda7ce8;p=php MFH: Use FREE_HASHTABLE() instead of efree() --- diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index aff705f71d..d5d1f80800 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -2170,7 +2170,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(); }