diff options
author | Dmitry Stogov <dmitry@zend.com> | 2017-06-29 10:10:57 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2017-06-29 10:10:57 +0300 |
commit | bbb786c85ba93994ec0ac3025f0f84caea317483 (patch) | |
tree | 7a267c7dffb688b4fdd06f7741451ec36d239f93 /Zend/zend_execute_API.c | |
parent | c23ffaa211947c5971b0c64192c7bb79016265d3 (diff) | |
download | php-git-bbb786c85ba93994ec0ac3025f0f84caea317483.tar.gz |
Split zend_init_execute_data() into zend_init_func_execute_data() and zend_init_code_execute_data()
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index 77345c4286..f3777d767b 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -822,7 +822,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) / int call_via_handler = (func->common.fn_flags & ZEND_ACC_CALL_VIA_TRAMPOLINE) != 0; const zend_op *current_opline_before_exception = EG(opline_before_exception); - zend_init_execute_data(call, &func->op_array, fci->retval); + zend_init_func_execute_data(call, &func->op_array, fci->retval); zend_execute_ex(call); EG(opline_before_exception) = current_opline_before_exception; if (call_via_handler) { |