History log of /php-src/ (Results 426 – 450 of 114289)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8acdde5b18-Oct-2024 Derick Rethans

Merge branch 'PHP-8.2' into PHP-8.3


b2b294a218-Oct-2024 Derick Rethans

Fixed bug GH-16037 (Assertion failure in ext/date/php_date.c)

a920afd218-Oct-2024 Christoph M. Becker

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset


66fe549d18-Oct-2024 Christoph M. Becker

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset


64f312f118-Oct-2024 Christoph M. Becker

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset


9bc3418217-Oct-2024 Christoph M. Becker

Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset

After normalization, `N` is supposed to be in range [0, 24], but for
very large and very small `$utcOffset` this is not

Fix GH-16454: Unhandled INF in date_sunset() with tiny $utcOffset

After normalization, `N` is supposed to be in range [0, 24], but for
very large and very small `$utcOffset` this is not necessarily the
case, since the normalization might yied `-inf` or `inf`. If that
happens, we let the function fail silently, since it is highly unlikely
that such `$utcOffset`s are passed in practice.

Closes GH-16483.

show more ...

e61e2c1e18-Oct-2024 Dmitry Stogov

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix invalid target opline with jit->reuse_ip active (#16457)


8b5668ef18-Oct-2024 Dmitry Stogov

Fix invalid target opline with jit->reuse_ip active (#16457)

This is an alternative for #16440

42e179ef16-Oct-2024 Gina Peter Banyard

ext/soap: Minor refactoring to wsdl_message()

d48bc08616-Oct-2024 Gina Peter Banyard

ext/soap: Reduce scope and use proper names for XML attribute variables

6171362916-Oct-2024 Gina Peter Banyard

ext/soap: Indentation fix

f0a35e2c16-Oct-2024 Gina Peter Banyard

ext/soap: Check services are not empty via an if guard

81132bb216-Oct-2024 Gina Peter Banyard

ext/soap: Eliminate some variable shadowing

cfe2e11316-Oct-2024 Gina Peter Banyard

ext/soap: Use bool instead of int

5e7c876216-Oct-2024 Gina Peter Banyard

ext/soap: Replace memset with 0 initialization

e2dee95616-Oct-2024 Gina Peter Banyard

ext/soap: Reduce scope of variable

6ddab74d17-Oct-2024 Gina Peter Banyard

sapi: Fix some variable shadowing (#16485)

sapi_module, mime_type_map, zend_extensions, php_cgi_globals, and phpdbg_globals are true globals which are being shadowed

b6f59d2a17-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix GH-16473: dom_import_simplexml stub is wrong


55266d4217-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix GH-16473: dom_import_simplexml stub is wrong


c26d5f2017-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-16473: dom_import_simplexml stub is wrong


41af933517-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-16473: dom_import_simplexml stub is wrong

It's been wrong since PHP 8.0 at least, and the signature was inherited
in 8.4-dev to the new DOM methods.

Closes GH-16489.

7aeafe4b17-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.4'

* PHP-8.4:
Fix GH-16406: Assertion failure in ext/phar/phar.c:2808


d8e5166317-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.3' into PHP-8.4

* PHP-8.3:
Fix GH-16406: Assertion failure in ext/phar/phar.c:2808


25817ad217-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Merge branch 'PHP-8.2' into PHP-8.3

* PHP-8.2:
Fix GH-16406: Assertion failure in ext/phar/phar.c:2808


6a8d0a0516-Oct-2024 Niels Dossche <7771979+nielsdos@users.noreply.github.com>

Fix GH-16406: Assertion failure in ext/phar/phar.c:2808

When copying entries during conversion in phar_convert_to_other(), the
header offset is not reset. This didn't matter in the past

Fix GH-16406: Assertion failure in ext/phar/phar.c:2808

When copying entries during conversion in phar_convert_to_other(), the
header offset is not reset. This didn't matter in the past as it wasn't
used anyway in the particular use-case, but since 1bb2a4f9 this is
actually used and sanity-checked.

Closes GH-16470.

show more ...

1...<<11121314151617181920>>...4572