From: Dmitry Stogov Date: Fri, 25 Apr 2014 07:29:35 +0000 (+0400) Subject: Use appropriate macro X-Git-Tag: POST_PHPNG_MERGE~412^2~48 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c39cf670c3dacad8ceb468dc2765ee6756676f2;p=php Use appropriate macro --- diff --git a/ext/opcache/zend_accelerator_util_funcs.c b/ext/opcache/zend_accelerator_util_funcs.c index 2ac26897b4..f9b0e819a6 100644 --- a/ext/opcache/zend_accelerator_util_funcs.c +++ b/ext/opcache/zend_accelerator_util_funcs.c @@ -57,7 +57,7 @@ static void zend_accel_destroy_zend_function(zval *zv) if (function->type == ZEND_USER_FUNCTION) { if (function->op_array.static_variables) { - efree(function->op_array.static_variables); + FREE_HASHTABLE(function->op_array.static_variables); function->op_array.static_variables = NULL; } }