summaryrefslogtreecommitdiff
path: root/Zend/zend_opcode.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-03-12 18:53:27 +0000
committerAndi Gutmans <andi@php.net>2002-03-12 18:53:27 +0000
commitc8c629b3fcc1e531863b726faac843a3d8dde80d (patch)
tree2a50b5dcc7f712ee306d80da6db46985902ae04f /Zend/zend_opcode.c
parente96dd604126e1d6ad9e4c87192224bb0a34d76bd (diff)
downloadphp-git-c8c629b3fcc1e531863b726faac843a3d8dde80d.tar.gz
- Fix bug introduced with latest class hash table change.
Diffstat (limited to 'Zend/zend_opcode.c')
-rw-r--r--Zend/zend_opcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_opcode.c b/Zend/zend_opcode.c
index 6e5ca2aad2..9de9c78a4f 100644
--- a/Zend/zend_opcode.c
+++ b/Zend/zend_opcode.c
@@ -142,9 +142,9 @@ ZEND_API void destroy_zend_class(zend_class_entry **pce)
}
-void zend_class_add_ref(zend_class_entry *ce)
+void zend_class_add_ref(zend_class_entry **ce)
{
- (*ce->refcount)++;
+ (*(*ce)->refcount)++;
}