summaryrefslogtreecommitdiff
path: root/src/sp_execute.c
diff options
context:
space:
mode:
authorjvoisin2018-10-06 22:46:12 +0200
committerjvoisin2018-10-06 22:46:12 +0200
commit2d615f1fac1a78012c0cce2e4e9f87c8e6df05b6 (patch)
tree5a2f1c95d33aa1d22942f7e25250fd23be3e01e3 /src/sp_execute.c
parentb348899e1ee33a639ccf06e08e6abca4332776da (diff)
Bump coverage again
Diffstat (limited to '')
-rw-r--r--src/sp_execute.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index 6def91b..e631f7b 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -98,7 +98,6 @@ is_in_eval_and_whitelisted(const zend_execute_data *execute_data) {
98 "Eval_whitelist", SP_LOG_DROP, 98 "Eval_whitelist", SP_LOG_DROP,
99 "The function '%s' isn't in the eval whitelist, dropping its call.", 99 "The function '%s' isn't in the eval whitelist, dropping its call.",
100 ZSTR_VAL(current_function)); 100 ZSTR_VAL(current_function));
101 zend_bailout();
102 } 101 }
103 } 102 }
104 } 103 }
@@ -130,7 +129,7 @@ static void sp_execute_ex(zend_execute_data *execute_data) {
130 SNUFFLEUPAGUS_G(config).config_disabled_functions; 129 SNUFFLEUPAGUS_G(config).config_disabled_functions;
131 130
132 if (!execute_data) { 131 if (!execute_data) {
133 return; 132 return; // LCOV_EXCL_LINE
134 } 133 }
135 134
136 if (UNEXPECTED(EX(func)->op_array.type == ZEND_EVAL_CODE)) { 135 if (UNEXPECTED(EX(func)->op_array.type == ZEND_EVAL_CODE)) {