History log of /PHP-8.0/ (Results 151 – 175 of 99768)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
410e5d4819-Aug-2022 Tim Starling

Fix GCC 9.4 uninitialized variable warning

ext/opcache/zend_accelerator_blacklist.c:295:4: error: ‘blacklist_path_length’ may be used uninitialized in this function [-Werror=maybe-uninitiali

Fix GCC 9.4 uninitialized variable warning

ext/opcache/zend_accelerator_blacklist.c:295:4: error: ‘blacklist_path_length’ may be used uninitialized in this function [-Werror=maybe-uninitialized]

show more ...

1d4300d830-Jul-2022 NathanFreeman <1056159381@qq.com>

Fix bug #79451: Using DOMDocument->replaceChild on doctype causes double free

Closes GH-9201

72da418717-Aug-2022 Christoph M. Becker

Fix GH-9316: $http_response_header is wrong for long status line

While the reason-phrase in a HTTP response status line is usually
short, there is no actual limit specified by the RFCs.

Fix GH-9316: $http_response_header is wrong for long status line

While the reason-phrase in a HTTP response status line is usually
short, there is no actual limit specified by the RFCs. As such, we
must not assume that the line fits into the buffer (which is currently
128 bytes large).

Since there is no real need to present the complete status line, we
simply read and discard the rest of a long line.

Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>

Closes GH-9319.

show more ...

84dcf57815-Aug-2022 Jakub Zelenka

Fix GH-9339: OpenSSL oid_file path check warning contains uninitialized path

7c6316ad17-Aug-2022 Gabriel Caruso

Prepare for 8.0.24

05ed47ef15-Aug-2022 Gert de Pagter

Correct IntlDateFormatter::formatObject params

Closes GH-9341.

b8d0745114-Aug-2022 twosee

Re-fix GH-8409: SSL handshake timeout persistent connections hanging

This fix is another solution to replace d0527427be57957157aec5e26a28899b380140df, use zend_try and zend_catch to make sur

Re-fix GH-8409: SSL handshake timeout persistent connections hanging

This fix is another solution to replace d0527427be57957157aec5e26a28899b380140df, use zend_try and zend_catch to make sure persistent stream will be released when error occurred.

Closes GH-9332.

show more ...

cd1aed8e11-Aug-2022 Denis Vaksman

Fix GH-9296: `ksort` behaves incorrectly on arrays with mixed keys

The comparator function used at ksort in SORT_REGULAR mode
need to be consistent with basic comparison rules. These rul

Fix GH-9296: `ksort` behaves incorrectly on arrays with mixed keys

The comparator function used at ksort in SORT_REGULAR mode
need to be consistent with basic comparison rules. These rules
were changed in PHP-8.0 for numeric strings, but comparator
used at ksort kept the old behaviour. It leads to inconsistent
situations, when after ksort the first key is GREATER than some
of the next ones by according to the basic comparison operators.

Closes GH-9293.

show more ...

962d8bd011-Aug-2022 Derick Rethans

The data for Tehran has changed, update test

c699212111-Aug-2022 Derick Rethans

Updated to version 2022.2 (2022b)

8aeae63610-Aug-2022 Vladislav Senin

Fixes CI macOs, replacing now disabled tidyp dependency to tidy-html5.

d9ff5e0704-Aug-2022 Jakub Zelenka

Fix GH-8472: stream_socket_accept result may have incorrect metadata

a807092c04-Aug-2022 Go Kudo

CI: macos-10.15 -> macos-11 (#9087)

macOS-10.15 deprecated and remove soon GitHub Actions.
We needs migrate to macos-11 (Big Sur)

1ce2b56204-Aug-2022 zeriyoshi

[CI skip] update NEWS

3725717d04-Aug-2022 Go Kudo

Remove ZEND_DVAL_TO_LVAL_CAST_OK (#9215)

* Remove ZEND_DVAL_TO_LVAL_CAST_OK
As far as I can see, this operation should always use the _slow method, and the results seem to be wrong when

Remove ZEND_DVAL_TO_LVAL_CAST_OK (#9215)

* Remove ZEND_DVAL_TO_LVAL_CAST_OK
As far as I can see, this operation should always use the _slow method, and the results seem to be wrong when ZEND_DVAL_TO_LVAL_CAST_OK is enabled.

* update NEWS

show more ...

a08ffc7002-Aug-2022 Gabriel Caruso

[ci-skip] Fix for bug #80047 was included in previous release

We are removing the entry in 8.0.23, as the fix was included
in the 8.0.22 release. Given that an entry already exists, we

[ci-skip] Fix for bug #80047 was included in previous release

We are removing the entry in 8.0.23, as the fix was included
in the 8.0.22 release. Given that an entry already exists, we
are just deleting extra lines.

show more ...

2758ff2a01-Aug-2022 Dmitry Stogov

Tracing: Prevent recording types of variables used to pass zend_class_entry

af1a7b7b01-Aug-2022 Dmitry Stogov

Fix SSA reconstruction when body of "foreach" loop is removed

Fixes oss-fuzz #49483

001e7dbb28-Jul-2022 Derick Rethans

Fixed bug #80047 (DatePeriod doesn't warn with custom DateTimeImmutable)

85f3a96928-Jul-2022 Derick Rethans

Revert "Fixed #80047: DatePeriod doesn't warn with custom DateTimeImmutable"

This reverts commit 973c3f6e241227ffc14c3608c774d7636b798cec.

8ed21a8918-Jul-2022 Christoph M. Becker

Fix GH-9032: SQLite3 authorizer crashes on NULL values

The arguments 3 to 6 of the authorizer callback may be `NULL`[1], and
we have to properly deal with that. Instead of causing a seg

Fix GH-9032: SQLite3 authorizer crashes on NULL values

The arguments 3 to 6 of the authorizer callback may be `NULL`[1], and
we have to properly deal with that. Instead of causing a segfault, we
deny authorization, which is still better than a crash, and apparently,
we cannot do better anyway.

[1] <https://www.sqlite.org/c3ref/set_authorizer.html>

Closes GH-9040.

show more ...

a442e29426-Jul-2022 Christoph M. Becker

Fix GH-9155: dba_open("non-existing", "c-", "flatfile") segfaults

We must not assume that the lock file has been opened.

Closes GH-9156.

35fd97c318-Jul-2022 Christoph M. Becker

Fix GH-9033: Loading blacklist file can fail due to negative length

If the blacklist file contains a line with a single double-quote, we
called `zend_strndup(pbuf, -1)` what causes an un

Fix GH-9033: Loading blacklist file can fail due to negative length

If the blacklist file contains a line with a single double-quote, we
called `zend_strndup(pbuf, -1)` what causes an unnecessary bail out;
instead we just ignore that line.

If the blacklist file contains an empty line, we may have caused an OOB
read; instead we just ignore that line.

Closes GH-9036.

show more ...

44b86aee25-Jul-2022 Dmitry Stogov

Fix memory leak

Fixes oss-fuzz #49272

3962f00b21-Jul-2022 Ilija Tovilo

Fix spl test cleanup

12345678910>>...3991