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_operators.c | |
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_operators.c')
-rw-r--r-- | Zend/zend_operators.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.c b/Zend/zend_operators.c index 0695b4606e..a74be6b6a3 100644 --- a/Zend/zend_operators.c +++ b/Zend/zend_operators.c @@ -549,7 +549,7 @@ ZEND_API void convert_to_object(zval *op) /* OBJECTS_OPTIMIZE */ TSRMLS_FETCH(); - object_and_properties_init(op, &zend_standard_class_def, op->value.ht); + object_and_properties_init(op, zend_standard_class_def, op->value.ht); return; break; } |