#
15197702 |
| 07-Oct-2021 |
Nikita Popov |
Fixed bug #54350 Don't allow calling fclose() on the stream while in the user filter callback. This is basically the same protection as xp_ssl streams use during callback invocations
Fixed bug #54350 Don't allow calling fclose() on the stream while in the user filter callback. This is basically the same protection as xp_ssl streams use during callback invocations. There are more issues in this general area (e.g. stack overflow on stream_filter_remove), but this addresses freeing the stream during the filter callback invocation at least.
show more ...
|
#
e5d35a32 |
| 05-Oct-2021 |
Derick Rethans |
Prepare branch for 7.4.26-dev |
#
958daa65 |
| 05-Oct-2021 |
Matteo Beccati |
Fix #81509 pg_end_copy still expects a resource |
#
68b874d1 |
| 05-Oct-2021 |
Derick Rethans |
Fixed bug #81504: Incorrect timezone transition details for POSIX data |
#
34cd6cbf |
| 05-Oct-2021 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Revert "Fix #81424: PCRE2 10.35 JIT performance regression"
|
#
95235427 |
| 05-Oct-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Revert "Fix #81424: PCRE2 10.35 JIT performance regression"
|
#
a19f655b |
| 05-Oct-2021 |
Christoph M. Becker |
Revert "Fix #81424: PCRE2 10.35 JIT performance regression" This reverts commit a2471383fec332ae30827c7e3f4f9451420f1f0b. Fixing the performance regression, apparently fixes a funct
Revert "Fix #81424: PCRE2 10.35 JIT performance regression" This reverts commit a2471383fec332ae30827c7e3f4f9451420f1f0b. Fixing the performance regression, apparently fixes a functional regression[1], so we revert for now. [1] <https://github.com/PhilipHazel/pcre2/issues/21> Closes GH-7556.
show more ...
|
#
e829284b |
| 05-Oct-2021 |
Joe Watkins |
Merge branch 'PHP-8.1' * PHP-8.1: Fix #81496: CLI server logs wrong request method
|
#
03e9bed5 |
| 05-Oct-2021 |
Joe Watkins |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Fix #81496: CLI server logs wrong request method
|
#
cdcdb330 |
| 03-Oct-2021 |
Lauri Kenttä |
Fix #81496: CLI server logs wrong request method |
#
e286313f |
| 02-Oct-2021 |
sasezaki |
Fix bug #81474: Make ReflectionAttribute non-final This backports GH-7520 to PHP 8.0. Closes GH-7545. |
#
9faa11d3 |
| 04-Oct-2021 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Fix #77978: Dirname ending in colon unzips to wrong dir
|
#
57a32c6a |
| 04-Oct-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #77978: Dirname ending in colon unzips to wrong dir
|
#
e0c0de00 |
| 29-Sep-2021 |
Christoph M. Becker |
Fix #77978: Dirname ending in colon unzips to wrong dir When making the relative path, we must not stop on a `:\` sequence in the middle of the filename. This is only significant on Win
Fix #77978: Dirname ending in colon unzips to wrong dir When making the relative path, we must not stop on a `:\` sequence in the middle of the filename. This is only significant on Windows as it may indicate an absolute filename, but this is already checked at the beginning of the function. Note that the bug and this patch affects all systems. However, on Windows the file is no longer extracted at all, since Windows NTSF does not allow filenames containing colons. Closes GH-7528.
show more ...
|
#
e9853e4f |
| 04-Oct-2021 |
Stanislav Malyshev |
[ci skip] Fix missing NEWS |
#
02778cdd |
| 04-Oct-2021 |
Stanislav Malyshev |
[ci skip] Add missing NEWS |
#
52e7e0f5 |
| 01-Oct-2021 |
Aliaksandr Bystry |
Fix bug #66588: SplFileObject::fgetcsv incorrectly returns a row on premature EOF Make sure the behavior is the same regardless of whether there is a trailing newline and whether the inp
Fix bug #66588: SplFileObject::fgetcsv incorrectly returns a row on premature EOF Make sure the behavior is the same regardless of whether there is a trailing newline and whether the input is a stream or not. Closes GH-7539.
show more ...
|
#
6d3ef573 |
| 30-Sep-2021 |
Dan Pock |
Fix bug #81491: Ensure HAVE_ARGON2LIB is set when compiling using libargon2 Closes GH-7538. |
#
80860bae |
| 30-Sep-2021 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Fix #81490: ZipArchive::extractTo() may leak memory
|
#
5db6e358 |
| 30-Sep-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #81490: ZipArchive::extractTo() may leak memory
|
#
4d442714 |
| 30-Sep-2021 |
Christoph M. Becker |
Fix #81490: ZipArchive::extractTo() may leak memory We always need to free the CWD state. Closes GH-7536. |
#
96ac9199 |
| 29-Sep-2021 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Fix #81477: LimitIterator + SplFileObject regression in 8.0.1
|
#
ee5711de |
| 27-Sep-2021 |
Christoph M. Becker |
Fix #81477: LimitIterator + SplFileObject regression in 8.0.1 We must not free the read line, if the `READ_AHEAD` flag is set. This also restores the expectations of SplFileObject_next_
Fix #81477: LimitIterator + SplFileObject regression in 8.0.1 We must not free the read line, if the `READ_AHEAD` flag is set. This also restores the expectations of SplFileObject_next_variation002.phpt. Closes GH-7518.
show more ...
|
#
41e00819 |
| 29-Sep-2021 |
Christoph M. Becker |
Merge branch 'PHP-8.0' into PHP-8.1 * PHP-8.0: Fix #81475: stream_isatty emits warning with attached stream wrapper
|
#
e2d9ca7b |
| 29-Sep-2021 |
Christoph M. Becker |
Merge branch 'PHP-7.4' into PHP-8.0 * PHP-7.4: Fix #81475: stream_isatty emits warning with attached stream wrapper
|