Skip to content

Commit 08fd6e9

Browse files
committed
Merge branch 'PHP-8.0' into master
* PHP-8.0: Fix #80175: PHP8 RC1 - JIT Buffer not working
2 parents 2583b18 + 2a545ba commit 08fd6e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/ZendAccelerator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,7 @@ static zend_result accel_post_startup(void)
30003000
zend_accel_error(ACCEL_LOG_FATAL, "Failure to initialize shared memory structures - probably not enough shared memory.");
30013001
return SUCCESS;
30023002
case SUCCESSFULLY_REATTACHED:
3003-
#ifdef HAVE_JIT
3003+
#if defined(HAVE_JIT) && !defined(ZEND_WIN32)
30043004
reattached = 1;
30053005
#endif
30063006
zend_shared_alloc_lock();

0 commit comments

Comments
 (0)