History log of /php-src/ext/zend_test/tests/gh16414.phpt (Results 1 – 1 of 1)
Revision Date Author Comments
# 909cecb7 16-Oct-2024 Christoph M. Becker

Fix GH-16414: zend_test.observer.observe_function_names may segfault

Unless `zend_test.observer.enabled` is on, we must not add observer
handlers, so we let the INI modify handler fail e

Fix GH-16414: zend_test.observer.observe_function_names may segfault

Unless `zend_test.observer.enabled` is on, we must not add observer
handlers, so we let the INI modify handler fail early.

We also need to ensure that the functions to observe have already been
called, so that their begin and end handlers are properly initialized.
Otherwise we will not observe the function execution, but a segfault.

Co-authored-by: Bob Weinand <bobwei9@hotmail.com>

Closes GH-16438.

show more ...