summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-10-29 17:19:02 +0000
committerAndi Gutmans <andi@php.net>2001-10-29 17:19:02 +0000
commit26578c386d7a6bfaf7d5a884e3dab02797dba7db (patch)
treec0961d1f8c1071ed85bb7d0a14a4d743b12ab364 /Zend/zend_opcode.c
parent7ab89b02c4330a2d38a25cea515f930fae4b5ffc (diff)
downloadphp-git-26578c386d7a6bfaf7d5a884e3dab02797dba7db.tar.gz
- Initial support for nested class definitions
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index 6462d3e497..08da904c35 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -117,12 +117,14 @@ ZEND_API void destroy_zend_class(zend_class_entry *ce)
efree(ce->refcount);
zend_hash_destroy(&ce->function_table);
zend_hash_destroy(&ce->default_properties);
+ zend_hash_destroy(&ce->class_table);
break;
case ZEND_INTERNAL_CLASS:
free(ce->name);
free(ce->refcount);
zend_hash_destroy(&ce->function_table);
zend_hash_destroy(&ce->default_properties);
+ /* zend_hash_destroy(&ce->class_table); FIXME: Make sure this is initialized */
break;
}
}