Merge branch '3.0'

This commit is contained in:
terrafrost 2023-08-27 23:12:02 -05:00
commit 36441a68e9
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
// see https://github.com/php/php-src/issues/11917
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && function_exists('opcache_get_status') && !defined('PHPSECLIB_ALLOW_JIT')) {
$status = opcache_get_status();
if ($status['jit']['enabled'] && $status['jit']['on']) {
if ($status && $status['jit']['enabled'] && $status['jit']['on']) {
throw new UnexpectedValueException(
'JIT on Windows is not currently supported'
);