diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-10 12:54:02 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-08-10 12:54:02 +0200 |
commit | c439f1fa6a724bfd988d3832f6dc9faece4ea657 (patch) | |
tree | d5be0302da75a22791c5e2c59bf186f03324ff4d /sapi/phpdbg/phpdbg_list.c | |
parent | 7c3e487289ec41e560cf7a77e36eb43da2234f33 (diff) | |
download | php-git-c439f1fa6a724bfd988d3832f6dc9faece4ea657.tar.gz |
Fixed bug #62294
The primary issue was already resolved in 7c3e487289ec41e560cf7a77e36eb43da2234f33,
but the particular example used in this bug report ran into an
additional issue on PHP 8, because I forgot to drop a number of
zend_bailout calls when switch require failure to throw.
Diffstat (limited to 'sapi/phpdbg/phpdbg_list.c')
-rw-r--r-- | sapi/phpdbg/phpdbg_list.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg_list.c b/sapi/phpdbg/phpdbg_list.c index 5c1b950bf6..d9b2fa00d5 100644 --- a/sapi/phpdbg/phpdbg_list.c +++ b/sapi/phpdbg/phpdbg_list.c @@ -242,7 +242,6 @@ zend_op_array *phpdbg_compile_file(zend_file_handle *file, int type) { if (zend_stream_fixup(file, &bufptr, &len) == FAILURE) { if (type == ZEND_REQUIRE) { zend_message_dispatcher(ZMSG_FAILED_REQUIRE_FOPEN, file->filename); - zend_bailout(); } else { zend_message_dispatcher(ZMSG_FAILED_INCLUDE_FOPEN, file->filename); } |