diff options
author | Andi Gutmans <andi@php.net> | 2001-12-13 16:55:04 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2001-12-13 16:55:04 +0000 |
commit | f4b832d277390f1e20e38ed275f26867c7c6537c (patch) | |
tree | 91aac94c57214300836ce189a1d565493adf77b7 /Zend/zend.h | |
parent | c55f8b96c9477c21b2d5033050d386a3d5a6807c (diff) | |
download | php-git-f4b832d277390f1e20e38ed275f26867c7c6537c.tar.gz |
- Fix crash bug in startup code.
- Start work on being able to reference global and local scope
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index c869f7fecf..69d33f3291 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -286,7 +286,7 @@ struct _zend_class_entry { HashTable function_table; HashTable default_properties; HashTable class_table; - HashTable static_members; + HashTable *static_members; HashTable constants_table; zend_function_entry *builtin_functions; |