History log of /php-src/ext/spl/tests/gh15833_1.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# b666dc97 21-Dec-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-15833: Segmentation fault (access null pointer) in ext/spl/spl_array.c

We're accessing the object properties table directly in spl, but we're
not accounting for lazy objects. Upon

Fix GH-15833: Segmentation fault (access null pointer) in ext/spl/spl_array.c

We're accessing the object properties table directly in spl, but we're
not accounting for lazy objects. Upon accessing we should trigger the
initialization as spl is doing direct manipulations on the object
property table and expects a real object.

Closes GH-17235.

show more ...