History log of /PHP-8.4/ext/opcache/tests/jit/gh17257.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# f4fb77ed 24-Dec-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-17257: UBSAN warning in ext/opcache/jit/zend_jit_vm_helpers.c

EX(opline) / opline can be stale if the IP is not stored, like in this
case on a trace enter. We always need to make

Fix GH-17257: UBSAN warning in ext/opcache/jit/zend_jit_vm_helpers.c

EX(opline) / opline can be stale if the IP is not stored, like in this
case on a trace enter. We always need to make sure that the opline is up
to date to make sure we don't use stale data.

Closes GH-17260.

show more ...