History log of /PHP-8.0/ (Results 226 – 250 of 99768)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
e864cb6106-Jun-2022 Stanislav Malyshev

Merge branch 'PHP-7.4' into PHP-8.0


d1be936906-Jun-2022 Stanislav Malyshev

Update NEWS

5800653706-Jun-2022 Stanislav Malyshev

Fix bug #81719: mysqlnd/pdo password buffer overflow

55f6895f17-May-2022 Christoph M. Becker

Fix #81720: Uninitialized array in pg_query_params() leading to RCE

We must not free parameters which we haven't initialized yet.

We also fix the not directly related issue, that we

Fix #81720: Uninitialized array in pg_query_params() leading to RCE

We must not free parameters which we haven't initialized yet.

We also fix the not directly related issue, that we checked for the
wrong value being `NULL`, potentially causing a segfault.

show more ...

bfe63f5603-Jun-2022 Yurun

Fix dblib ghtest8626 test.

Follow-up of GH-8628.
Closes GH-9694.

0a47fdf503-Jun-2022 David Carlier

Revert "Fix detection of unknown gcc function attributes"

This reverts commit 813d942bac2b604bb7f6b80aefac6e4aa69b3491.

ae8c2bc103-Jun-2022 Remi Collet

NEWS for GH-8685

2eb2f9d702-Jun-2022 Remi Collet

Fix GH-8685 mbstring requires pcre

813d942b02-May-2022 Athos Ribeiro

Fix detection of unknown gcc function attributes

As described in autoconf-archive upstream [1], from where
`build/ax_gcc_func_attribute.m4` is forked, the old unknown func attr
detec

Fix detection of unknown gcc function attributes

As described in autoconf-archive upstream [1], from where
`build/ax_gcc_func_attribute.m4` is forked, the old unknown func attr
detection method would throw a false negative anytime an unrelated
warning was raised.

This results in `ax_cv_have_func_attribute_target` being set to `no`
whenever certain compiler Warning flags are switched on. Namely, having
`-Wall` on, which is a default CFLAG for some linux distributions, will
result in

```
warning: ‘bar’ declared ‘static’ but never defined [-Wunused-function]
```

when evaluating support for the `target` function attribute.

With that configuration value set to `no`, the compiled php binaries
will not support x86_64 v3 instructions such as avx2 and sse2, which
should speed up specific tasks ran by PHP.

This issue was originally reported in Ubuntu [2].

[1] http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=commitdiff;h=df0894ad1a8195df67a52108b931e07d708cec9a
[2] https://bugs.launchpad.net/ubuntu/+source/php8.1/+bug/1882279
Closes GH-8483.

show more ...

df52903e25-May-2022 Yurun

Closes GH-8626: Fix PDOStatement->execute() failed.
Then execute successfully, errorInfo() information is incorrect

3a8912fb30-May-2022 Dmitry Stogov

Fix memory leak

This fixes oss-fuzz #47648

d5e5726820-May-2022 Derick Rethans

Fixed bug #78139 (timezone_open accepts invalid timezone string argument).

d8590b1a27-May-2022 Derick Rethans

Merge remote-tracking branch 'derickr/bug74671-dst-c-format' into PHP-8.0


63a31f3327-May-2022 Derick Rethans

Remove trailing whitespace from test

8d6a828127-May-2022 Derick Rethans

Mark test as XFAIL due to wrong assumptions

6418eba120-May-2022 Derick Rethans

Fixed bug #74671 (DST timezone abbreviation has incorrect offset)

b902017427-May-2022 Matteo Beccati

Fixed test

172b734526-May-2022 Derick Rethans

Update NEWS


209ea3ff26-May-2022 Derick Rethans

Fixed tests

2dcd821620-May-2022 Derick Rethans

Fixed bug #72963 (Null-byte injection in CreateFromFormat and related functions)

dfd1d7a520-May-2022 Derick Rethans

Fixed bug #76963 (Null-byte injection in createFromFormat)

e05897fe24-May-2022 Sara Golemon

Bump for 8.0.21

e33de9dd23-May-2022 David Carlier

Fix pcntl Haiku build

guarding SIGIO constant.

Closes GH-8612.

2a13304b12-May-2022 Christoph M. Becker

Fix GH-8538: SoapClient may strip parts of nmtokens

When stripping the namespace prefix, we can assume that this does not
contain any colons, while the rest of the name may contain colon

Fix GH-8538: SoapClient may strip parts of nmtokens

When stripping the namespace prefix, we can assume that this does not
contain any colons, while the rest of the name may contain colons.
Hence we must not use `strrchr()` but rather `strchr()` instead.

Closes GH-8543.

show more ...

f0480eb422-May-2022 Ilija Tovilo

Fix undefined behavior in php_set_inet6_addr

Postfix `++` on `NULL` is undefined behavior

Closes GH-8607

12345678910>>...3991