summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-10-01 10:46:13 +0400
committerDmitry Stogov <dmitry@zend.com>2014-10-01 10:46:13 +0400
commit9f7564b12b6e57d018bbc158e00f41499017d29e (patch)
treea7e80a2c37ca655213dd330bd72627378cc15732 /Zend/zend_execute_API.c
parent63dc9bbc027dc22ad4ef580c964744cd7db7fc33 (diff)
downloadphp-git-9f7564b12b6e57d018bbc158e00f41499017d29e.tar.gz
Removed zend_execute_data->prev_nested_call. Reuse prev_execute_data instead.
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index f59a10179b..b528bd0ab5 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -703,7 +703,6 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS
dummy_execute_data = *EG(current_execute_data);
dummy_execute_data.prev_execute_data = EG(current_execute_data);
dummy_execute_data.call = NULL;
- dummy_execute_data.prev_nested_call = NULL;
dummy_execute_data.opline = NULL;
dummy_execute_data.func = NULL;
EG(current_execute_data) = &dummy_execute_data;