summaryrefslogtreecommitdiff
path: root/src/sp_execute.c
diff options
context:
space:
mode:
authorjvoisin2017-10-25 14:22:56 +0200
committerGitHub2017-10-25 14:22:56 +0200
commit5c841311bd762afc9c0edd46e65e2a8dcf109e68 (patch)
tree3632f08c843d8fdafe70c1a279b1ffc4bf4e549a /src/sp_execute.c
parent30b900fedc5b1584b4d352d47ec3f9406d558be5 (diff)
.drop() is now bailout
Courtesy of @buixor
Diffstat (limited to 'src/sp_execute.c')
-rw-r--r--src/sp_execute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index fb4a313..6345da8 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -57,7 +57,7 @@ static void sp_execute_ex(zend_execute_data *execute_data) {
57 } 57 }
58 58
59 if (true == should_disable(execute_data)) { 59 if (true == should_disable(execute_data)) {
60 return; 60 sp_terminate();
61 } 61 }
62 62
63 if (execute_data->func->op_array.type == ZEND_EVAL_CODE) { 63 if (execute_data->func->op_array.type == ZEND_EVAL_CODE) {