Revision Date Author Comments
# 11648c00 18-May-2021 Nikita Popov

Don't include object hash in SplObjectStorage debug dump

The object hash is not particularly useful (anymore) and just
clutters the output. It encodes the same information as the
obj

Don't include object hash in SplObjectStorage debug dump

The object hash is not particularly useful (anymore) and just
clutters the output. It encodes the same information as the
object ID, which is already part of the output.

show more ...


# d29d3a4b 05-Jan-2021 Nikita Popov

Fix use-after-scope in SplObjectStorage::unserialize()

Introduced by the recent switch to a zend_object. Unserialize the
object into a tmp_var to avoid leaving behind a stack reference.

Fix use-after-scope in SplObjectStorage::unserialize()

Introduced by the recent switch to a zend_object. Unserialize the
object into a tmp_var to avoid leaving behind a stack reference.

Fixes oss-fuzz #29271.

show more ...