Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
  Wrap cleanup function call with zend_try.
This commit is contained in:
Dmitry Stogov 2024-01-22 10:33:09 +03:00
commit 9f79a98a4c

View file

@ -283,7 +283,9 @@ int fuzzer_do_request_from_buffer(
CG(compiled_filename) = NULL; /* ??? */
if (before_shutdown) {
before_shutdown();
zend_try {
before_shutdown();
} zend_end_try();
}
fuzzer_request_shutdown();