diff options
author | Andi Gutmans <andi@php.net> | 2002-03-12 19:22:29 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-03-12 19:22:29 +0000 |
commit | fb6976e46d6a0e3ce596358f866384e277849bc2 (patch) | |
tree | 36aaa1e3b3c25274b484b7b0b7df2af49b1f3171 /Zend/zend.h | |
parent | c8c629b3fcc1e531863b726faac843a3d8dde80d (diff) | |
download | php-git-fb6976e46d6a0e3ce596358f866384e277849bc2.tar.gz |
- Another couple of indirection fixes.
- Make class_entry->refcount be part of the structure and not allocated.
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 e7b0704b0a..3cb1eb58f4 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -265,7 +265,7 @@ struct _zend_class_entry { char *name; uint name_length; struct _zend_class_entry *parent; - int *refcount; + int refcount; zend_bool constants_updated; HashTable function_table; |