diff options
author | Jakub Zelenka <bukka@php.net> | 2016-03-20 15:53:57 +0000 |
---|---|---|
committer | Jakub Zelenka <bukka@php.net> | 2016-03-20 15:56:27 +0000 |
commit | 7e069daa89f05c1fa4127b2cedfd5586dbfc810e (patch) | |
tree | 7837366c913f13f93971cc554a0e4e44c4d37a02 /Zend/zend_builtin_functions.c | |
parent | a175aa9dcaed5e295d015ff73c663e06c2335155 (diff) | |
download | php-git-7e069daa89f05c1fa4127b2cedfd5586dbfc810e.tar.gz |
Fix bug #71835 (json_encode sometimes incorrectly detects recursion with JsonSerializable)
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 231424f1de..a576455fa3 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1183,7 +1183,7 @@ ZEND_FUNCTION(get_object_vars) zobj = Z_OBJ_P(obj); - if (!zobj->ce->default_properties_count && properties == zobj->properties) { + if (!zobj->ce->default_properties_count && properties == zobj->properties && !ZEND_HASH_GET_APPLY_COUNT(properties)) { /* fast copy */ if (EXPECTED(zobj->handlers == &std_object_handlers)) { if (EXPECTED(!(GC_FLAGS(properties) & IS_ARRAY_IMMUTABLE))) { |