Skip to content

Commit 81f1465

Browse files
committed
Also fix JIT
1 parent de4f7df commit 81f1465

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_helpers.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2084,7 +2084,7 @@ static void ZEND_FASTCALL zend_jit_fetch_obj_w_slow(zend_object *zobj)
20842084

20852085
if (opline->op2_type == IS_CONST) {
20862086
prop_info = CACHED_PTR_EX(cache_slot + 2);
2087-
if (!prop_info) {
2087+
if (!prop_info || !EXPECTED(zobj->ce == CACHED_PTR_EX(cache_slot))) {
20882088
break;
20892089
}
20902090
}

0 commit comments

Comments
 (0)