mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Wrap cleanup function call with zend_try.
This commit is contained in:
commit
9f79a98a4c
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue