summaryrefslogtreecommitdiff
path: root/ext/reflection/php_reflection.c
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2015-11-27 11:32:38 +0800
committerXinchen Hui <laruence@gmail.com>2015-11-27 11:32:38 +0800
commit6cb6c044992414fc8d985c0c24ca6f7a59d2706d (patch)
tree7b5ab48691509cf3626ab889f6de4e0905c7ea88 /ext/reflection/php_reflection.c
parent99dd7ee80ba6865dfbf742935f9aadab1d65801c (diff)
downloadphp-git-6cb6c044992414fc8d985c0c24ca6f7a59d2706d.tar.gz
Fixed bug #70982 (setStaticPropertyValue behaviors inconsistently with 5.6)
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r--ext/reflection/php_reflection.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c
index faced0572c..72df8b5901 100644
--- a/ext/reflection/php_reflection.c
+++ b/ext/reflection/php_reflection.c
@@ -3858,6 +3858,7 @@ ZEND_METHOD(reflection_class, setStaticPropertyValue)
"Class %s does not have a property named %s", ZSTR_VAL(ce->name), ZSTR_VAL(name));
return;
}
+ ZVAL_DEREF(variable_ptr);
zval_ptr_dtor(variable_ptr);
ZVAL_COPY(variable_ptr, value);
}