diff options
author | Zeev Suraski <zeev@php.net> | 1999-12-27 19:07:33 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-12-27 19:07:33 +0000 |
commit | b7a5b3c309ad64ddf9d60cfd3ca21d9f25315d87 (patch) | |
tree | c251467f12cd03303f2a1a0f7b3694c7a666f08e /Zend/zend_opcode.c | |
parent | 27daca31f376a323462aeff76bc1b55bab7d8841 (diff) | |
download | php-git-b7a5b3c309ad64ddf9d60cfd3ca21d9f25315d87.tar.gz |
- Generalize the fast cache mechanism
- Add the HashTable struct to the fast cache mechanism
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 2 |
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) { |