summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c2
1 files changed, 1 insertions, 1 deletions
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) {