summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sp_execute.c2
-rw-r--r--src/sp_pcre_compat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/sp_execute.c b/src/sp_execute.c
index 6e80b6d..f105b7f 100644
--- a/src/sp_execute.c
+++ b/src/sp_execute.c
@@ -89,7 +89,7 @@ inline static void is_builtin_matching(
89 should_disable_ht(EG(current_execute_data), function_name, param_value, param_name, SPCFG(disabled_functions_reg).disabled_functions, ht); 89 should_disable_ht(EG(current_execute_data), function_name, param_value, param_name, SPCFG(disabled_functions_reg).disabled_functions, ht);
90} 90}
91 91
92static void ZEND_HOT is_in_eval_and_whitelisted(zend_execute_data const* const execute_data) { 92static void is_in_eval_and_whitelisted(zend_execute_data const* const execute_data) {
93 sp_config_eval const* const config_eval = &(SPCFG(eval)); 93 sp_config_eval const* const config_eval = &(SPCFG(eval));
94 94
95 if (EXPECTED(0 == SPG(in_eval))) { 95 if (EXPECTED(0 == SPG(in_eval))) {
diff --git a/src/sp_pcre_compat.c b/src/sp_pcre_compat.c
index 81c51fd..3658692 100644
--- a/src/sp_pcre_compat.c
+++ b/src/sp_pcre_compat.c
@@ -23,7 +23,7 @@ sp_pcre* sp_pcre_compile(const char* const pattern) {
23 return ret; 23 return ret;
24} 24}
25 25
26bool ZEND_HOT sp_is_regexp_matching_len(const sp_pcre* regexp, const char* str, size_t len) { 26bool sp_is_regexp_matching_len(const sp_pcre* regexp, const char* str, size_t len) {
27 int ret = 0; 27 int ret = 0;
28 28
29 assert(NULL != regexp); 29 assert(NULL != regexp);