summaryrefslogtreecommitdiff
path: root/src/sp_utils.c
diff options
context:
space:
mode:
authorjvoisin2022-12-08 21:08:38 +0100
committerjvoisin2022-12-09 20:03:22 +0100
commit110daa81c3b11ec102daf4ee634e2f3d2e9c5f36 (patch)
treec88c95f7abfefc5d86a98d9294edade9e38f18f7 /src/sp_utils.c
parent93c2c5632e27549d95fb7d9493769f013e49a749 (diff)
Portability improvements for PHP8.2
Diffstat (limited to 'src/sp_utils.c')
-rw-r--r--src/sp_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp_utils.c b/src/sp_utils.c
index 42f7871..3107f77 100644
--- a/src/sp_utils.c
+++ b/src/sp_utils.c
@@ -473,7 +473,7 @@ void unhook_functions(HashTable *ht) {
473 func->internal_function.handler = orig_handler; 473 func->internal_function.handler = orig_handler;
474 } 474 }
475 (void)idx;//silence a -Wunused-but-set-variable 475 (void)idx;//silence a -Wunused-but-set-variable
476 ZEND_HASH_FOREACH_END_DEL(); 476 ZEND_HASH_FOREACH_END();
477} 477}
478 478
479bool check_is_in_eval_whitelist(const char* function_name) { 479bool check_is_in_eval_whitelist(const char* function_name) {