summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjvoisin2018-10-06 23:21:25 +0200
committerjvoisin2018-10-06 23:21:25 +0200
commit9b7f998a2edd9cdd29780cebcd8630ff914cebe4 (patch)
tree3d21a5a3635c040a01f6a238c604a2538ef324ff /src
parenta877eca449b0448fbc979db7752ebc0190424187 (diff)
Add a missing opcode in sp_execute_ex
Diffstat (limited to 'src')
-rw-r--r--src/sp_execute.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index 7a5229d..cc2d9b7 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -178,6 +178,8 @@ static void sp_execute_ex(zend_execute_data *execute_data) {
178 execute_data->prev_execute_data->opline->opcode == 178 execute_data->prev_execute_data->opline->opcode ==
179 ZEND_DO_UCALL || 179 ZEND_DO_UCALL ||
180 execute_data->prev_execute_data->opline->opcode == 180 execute_data->prev_execute_data->opline->opcode ==
181 ZEND_DO_ICALL ||
182 execute_data->prev_execute_data->opline->opcode ==
181 ZEND_DO_FCALL_BY_NAME)) { 183 ZEND_DO_FCALL_BY_NAME)) {
182 if (UNEXPECTED(true == should_disable_ht(execute_data, function_name, 184 if (UNEXPECTED(true == should_disable_ht(execute_data, function_name,
183 NULL, NULL, 185 NULL, NULL,