From b7a5b3c309ad64ddf9d60cfd3ca21d9f25315d87 Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Mon, 27 Dec 1999 19:07:33 +0000 Subject: - Generalize the fast cache mechanism - Add the HashTable struct to the fast cache mechanism --- Zend/zend_opcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_opcode.c') diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 77632df91c..3f40aad847 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -155,7 +155,7 @@ ZEND_API void destroy_op_array(zend_op_array *op_array) if (op_array->static_variables) { zend_hash_destroy(op_array->static_variables); - efree(op_array->static_variables); + FREE_HASHTABLE(op_array->static_variables); } if (--(*op_array->refcount)>0) { -- cgit v1.2.1