diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | ext/opcache/ZendAccelerator.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -9,6 +9,7 @@ PHP NEWS - Opcache: . Fixed bug #80184 (Complex expression in while / if statements resolves to false incorrectly). (Nikita) + . Fixed bug #80175 (PHP8 RC1 - JIT Buffer not working). (cmb) - Reflection: . Fixed bug #80190 (ReflectionMethod::getReturnType() does not handle static diff --git a/ext/opcache/ZendAccelerator.c b/ext/opcache/ZendAccelerator.c index 340c19764f..06e171b179 100644 --- a/ext/opcache/ZendAccelerator.c +++ b/ext/opcache/ZendAccelerator.c @@ -3000,7 +3000,7 @@ static zend_result accel_post_startup(void) zend_accel_error(ACCEL_LOG_FATAL, "Failure to initialize shared memory structures - probably not enough shared memory."); return SUCCESS; case SUCCESSFULLY_REATTACHED: -#ifdef HAVE_JIT +#if defined(HAVE_JIT) && !defined(ZEND_WIN32) reattached = 1; #endif zend_shared_alloc_lock(); |