Skip to content

Commit 9e3e41f

Browse files
committed
Merge branch 'PHP-8.4' into PHP-8.5
* PHP-8.4: Fix COMMUNITY_asan failure on src/Symfony/Component/HttpClient (#22021)
2 parents fa7ab23 + 6114857 commit 9e3e41f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/opcache/jit/zend_jit_trace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8551,7 +8551,7 @@ int ZEND_FASTCALL zend_jit_trace_hot_side(zend_execute_data *execute_data, uint3
85518551
do {
85528552
ex = ex->prev_execute_data;
85538553
n++;
8554-
} while (ex && zend_jit_traces[root].op_array != &ex->func->op_array);
8554+
} while (ex && (!ex->func || zend_jit_traces[root].op_array != &ex->func->op_array));
85558555
if (ex && n <= ZEND_JIT_TRACE_MAX_RET_DEPTH) {
85568556
ret_depth = n;
85578557
}

0 commit comments

Comments
 (0)