. Fixed bug #80345 (PHPIZE configuration has outdated PHP_RELEASE_VERSION).
(cmb)
. Fixed bug #72964 (White space not unfolded for CC/Bcc headers). (cmb)
- . Fixed bug #80362 (Running dtrace scripts can cause php to crash).
- (al at coralnet dot name)
+ . Fixed bug #80391 (Iterable not covariant to mixed). (Nikita)
. Fixed bug #80393 (Build of PHP extension fails due to configuration gap
with libtool). (kir dot morozov at gmail dot com)
- . Fixed bug #80402 (configure filtering out -lpthread). (Nikita)
+ . Fixed bug #77069 (stream filter loses final block of data). (cmb)
- Fileinfo:
. Fixed bug #77961 (finfo_open crafted magic parsing SIGABRT). (cmb)
inflateEnd(&(data->strm));
data->finished = '\1';
exit_status = PSFS_PASS_ON;
- } else if (status != Z_OK) {
+ } else if (status != Z_OK && status != Z_BUF_ERROR) {
/* Something bad happened */
+ php_error_docref(NULL, E_NOTICE, "zlib: %s", zError(status));
php_stream_bucket_delref(bucket);
/* reset these because despite the error the filter may be used again */
data->strm.next_in = data->inbuf;