summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sp_execute.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index bf9c907..20fe509 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -131,10 +131,10 @@ static void sp_execute_ex(zend_execute_data *execute_data) {
131static void sp_zend_execute_internal(INTERNAL_FUNCTION_PARAMETERS) { 131static void sp_zend_execute_internal(INTERNAL_FUNCTION_PARAMETERS) {
132 is_in_eval_and_whitelisted(execute_data); 132 is_in_eval_and_whitelisted(execute_data);
133 133
134 EX(func)->internal_function.handler(INTERNAL_FUNCTION_PARAM_PASSTHRU);
135
136 if (UNEXPECTED(NULL != orig_zend_execute_internal)) { 134 if (UNEXPECTED(NULL != orig_zend_execute_internal)) {
137 orig_zend_execute_internal(INTERNAL_FUNCTION_PARAM_PASSTHRU); 135 orig_zend_execute_internal(INTERNAL_FUNCTION_PARAM_PASSTHRU);
136 } else {
137 EX(func)->internal_function.handler(INTERNAL_FUNCTION_PARAM_PASSTHRU);
138 } 138 }
139} 139}
140 140