History log of /PHP-8.2/Zend/tests/magic_get_destroy_object.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# 6381a16f 09-Sep-2021 Nikita Popov

Avoid use after free in internal prop type verification

This issue only applies to debug builds: read_property can free
the object, but we'd try to check the object handlers afterwards.

Avoid use after free in internal prop type verification

This issue only applies to debug builds: read_property can free
the object, but we'd try to check the object handlers afterwards.
Rewrite the check in a way that only accessed the object before
the read_property call.

Fixes oss-fuzz #38297.

show more ...