summaryrefslogtreecommitdiff
path: root/src/sp_execute.c
diff options
context:
space:
mode:
authorjvoisin2018-10-06 23:15:50 +0200
committerjvoisin2018-10-06 23:15:50 +0200
commit41f5fe02575611ac43848a3a95f337e57960d492 (patch)
treeecc5270734280063e20e66876eef89e09ca5b362 /src/sp_execute.c
parent2d615f1fac1a78012c0cce2e4e9f87c8e6df05b6 (diff)
Bump coverage again
Diffstat (limited to 'src/sp_execute.c')
-rw-r--r--src/sp_execute.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index e631f7b..fa8fa90 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -223,8 +223,9 @@ static void sp_zend_execute_internal(INTERNAL_FUNCTION_PARAMETERS) {
223 is_in_eval_and_whitelisted(execute_data); 223 is_in_eval_and_whitelisted(execute_data);
224 224
225 if (UNEXPECTED(NULL != orig_zend_execute_internal)) { 225 if (UNEXPECTED(NULL != orig_zend_execute_internal)) {
226 orig_zend_execute_internal( 226 // LCOV_EXCL_START
227 INTERNAL_FUNCTION_PARAM_PASSTHRU); // LCOV_EXCL_LINE 227 orig_zend_execute_internal(INTERNAL_FUNCTION_PARAM_PASSTHRU);
228 // LCOV_EXCL_STOP
228 } else { 229 } else {
229 EX(func)->internal_function.handler(INTERNAL_FUNCTION_PARAM_PASSTHRU); 230 EX(func)->internal_function.handler(INTERNAL_FUNCTION_PARAM_PASSTHRU);
230 } 231 }