diff options
author | Andi Gutmans <andi@php.net> | 2002-11-29 16:35:46 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-11-29 16:35:46 +0000 |
commit | 2de45bec6579c71eaab8210c69e0144864fa2fce (patch) | |
tree | cd91e5879eabda00e05d6ef7670b948d77ca489b /Zend | |
parent | 71235e414074bec4893669f9b044560eb98eb2fa (diff) | |
download | php-git-2de45bec6579c71eaab8210c69e0144864fa2fce.tar.gz |
- Initialize constants_updated (by Marcus)
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 17d2cda0c5..f44321b386 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -289,6 +289,8 @@ static void register_standard_class(void) zend_standard_class_def->handle_property_get = NULL; zend_standard_class_def->handle_property_set = NULL; zend_standard_class_def->refcount = 1; + zend_standard_class_def->constants_updated = 0; + zend_hash_add(GLOBAL_CLASS_TABLE, "stdclass", sizeof("stdclass"), &zend_standard_class_def, sizeof(zend_class_entry *), NULL); } |