summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-07-03 10:59:26 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-07-03 11:00:12 +0200
commit2bf880db2c624a32f130e0da309b22dcf782609d (patch)
tree56efcd56a99e8b574e023724f8bcedbcacdaa7a1 /Zend/zend_execute_API.c
parentc0924cf67d81c9bdf4451c4e00fb956cf154a141 (diff)
downloadphp-git-2bf880db2c624a32f130e0da309b22dcf782609d.tar.gz
Fixed bug #78239
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r--Zend/zend_execute_API.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c
index f6f1eed26f..a530162d50 100644
--- a/Zend/zend_execute_API.c
+++ b/Zend/zend_execute_API.c
@@ -754,6 +754,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache) /
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;
+ zend_rethrow_exception(EG(current_execute_data));
}
return FAILURE;
}