From 26578c386d7a6bfaf7d5a884e3dab02797dba7db Mon Sep 17 00:00:00 2001 From: Andi Gutmans Date: Mon, 29 Oct 2001 17:19:02 +0000 Subject: - Initial support for nested class definitions --- Zend/zend_opcode.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Zend/zend_opcode.c') 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; } } -- cgit v1.2.1