We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d87765 commit 0564eafCopy full SHA for 0564eaf
1 file changed
frankenphp.c
@@ -97,8 +97,8 @@ PHP_FUNCTION(frankenphp_opcache_reset);
97
* table. Uses handler comparison instead of orig_opcache_reset check so that
98
* a fresh function table after PHP module restart is always re-overridden. */
99
static void frankenphp_override_opcache_reset(void) {
100
- zend_function *func = zend_hash_str_find_ptr(CG(function_table), "opcache_reset",
101
- sizeof("opcache_reset") - 1);
+ zend_function *func = zend_hash_str_find_ptr(
+ CG(function_table), "opcache_reset", sizeof("opcache_reset") - 1);
102
if (func != NULL && func->type == ZEND_INTERNAL_FUNCTION &&
103
((zend_internal_function *)func)->handler !=
104
ZEND_FN(frankenphp_opcache_reset)) {
0 commit comments