diff options
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r-- | Zend/zend_opcode.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c index 6d16b719b3..9d9b924632 100644 --- a/Zend/zend_opcode.c +++ b/Zend/zend_opcode.c @@ -118,6 +118,7 @@ ZEND_API void destroy_zend_class(zend_class_entry *ce) zend_hash_destroy(&ce->function_table); zend_hash_destroy(&ce->default_properties); zend_hash_destroy(&ce->static_members); + zend_hash_destroy(&ce->constants); zend_hash_destroy(&ce->class_table); break; case ZEND_INTERNAL_CLASS: @@ -126,6 +127,7 @@ ZEND_API void destroy_zend_class(zend_class_entry *ce) zend_hash_destroy(&ce->function_table); zend_hash_destroy(&ce->default_properties); zend_hash_destroy(&ce->static_members); + zend_hash_destroy(&ce->constants); zend_hash_destroy(&ce->class_table); break; } |