diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-06-27 13:12:09 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-06-27 13:12:09 +0300 |
commit | c0be77aa75f4c8d926eb4979f4b6213dfd0b3a0a (patch) | |
tree | 57aad731cf20f1fa5f58b1abac4b692d37651617 /Zend/zend_execute_API.c | |
parent | 908ce66f73f78870b1159697a4276e273c767fa3 (diff) | |
download | php-git-c0be77aa75f4c8d926eb4979f4b6213dfd0b3a0a.tar.gz |
Removed deprecated checks.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 5e02b78af1..77345c4286 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -741,15 +741,6 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) / call = zend_vm_stack_push_call_frame(ZEND_CALL_TOP_FUNCTION | ZEND_CALL_DYNAMIC, func, fci->param_count, fci_cache->called_scope, fci->object); - if (fci->object && - (!EG(objects_store).object_buckets || - !IS_OBJ_VALID(EG(objects_store).object_buckets[fci->object->handle]))) { - zend_vm_stack_free_call_frame(call); - if (EG(current_execute_data) == &dummy_execute_data) { - EG(current_execute_data) = dummy_execute_data.prev_execute_data; - } - return FAILURE; - } if (func->common.fn_flags & (ZEND_ACC_ABSTRACT|ZEND_ACC_DEPRECATED)) { if (func->common.fn_flags & ZEND_ACC_ABSTRACT) { |