summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-07-15 18:09:56 +0000
committerAndi Gutmans <andi@php.net>2002-07-15 18:09:56 +0000
commitbc5ea87e281aed931e64c55822c91cc29565c3f9 (patch)
treec38a7c1b50ca36316d552a385fe1889fe087d84d /Zend/zend_opcode.c
parent50ca75a0f614961fa1b5effc220c116a0bbda616 (diff)
downloadphp-git-bc5ea87e281aed931e64c55822c91cc29565c3f9.tar.gz
- Commit patch to support protected member variables (by Timm Friebe w/
- some fixes by me). - You can't access protected variables from outside the object. If you want - to see a protected member from your ancestors you need to declare the - member as protected in the class you want to use it in. You can't - redeclare a protected variable as private nor the other way around.
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 62d80e29ef..94e587c8c2 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -119,6 +119,7 @@ ZEND_API void destroy_zend_class(zend_class_entry **pce)
case ZEND_USER_CLASS:
zend_hash_destroy(&ce->default_properties);
zend_hash_destroy(&ce->private_properties);
+ zend_hash_destroy(&ce->protected_properties);
zend_hash_destroy(ce->static_members);
efree(ce->name);
zend_hash_destroy(&ce->function_table);
@@ -130,6 +131,7 @@ ZEND_API void destroy_zend_class(zend_class_entry **pce)
case ZEND_INTERNAL_CLASS:
zend_hash_destroy(&ce->default_properties);
zend_hash_destroy(&ce->private_properties);
+ zend_hash_destroy(&ce->protected_properties);
zend_hash_destroy(ce->static_members);
free(ce->name);
zend_hash_destroy(&ce->function_table);