From 6fe420def0c62d887070fd1c34b5646f6fda7ce8 Mon Sep 17 00:00:00 2001 From: foobar Date: Mon, 20 Dec 2004 19:15:24 +0000 Subject: [PATCH] MFH: Use FREE_HASHTABLE() instead of efree() --- ext/standard/basic_functions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } -- 2.50.1