#
954543ce |
| 13-Jul-2019 |
Christoph M. Becker |
Fix #78282: atime and mtime mismatch The fix for bug #78241 assumed that `time_t` would always be 64bit, but actually is 32bit for x86. We therefore enforce 64bit arithmetic to avoi
Fix #78282: atime and mtime mismatch The fix for bug #78241 assumed that `time_t` would always be 64bit, but actually is 32bit for x86. We therefore enforce 64bit arithmetic to avoid wrapping. (cherry picked from commit bf242d58e77d50d4d8fdaaaca7ede686ec4467c0)
show more ...
|
#
2811e924 |
| 06-Aug-2019 |
Derick Rethans |
Update NEWS for 7.4.0beta3 |
#
6da7f015 |
| 06-Aug-2019 |
Derick Rethans |
Update NEWS for PHP 7.4.0beta2 |
#
3fc0e2bb |
| 05-Aug-2019 |
Dmitry Stogov |
Fixed bug #78376 (Incorrect preloading of constant static properties) |
#
f12dc90e |
| 02-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78346: strip_tags no longer handling nested php tags
|
#
a87ef5e3 |
| 02-Aug-2019 |
Christoph M. Becker |
Fix #78346: strip_tags no longer handling nested php tags When the strip tags state machine has been flattened, an if statement has mistakenly been treated as else if. We fix this, and
Fix #78346: strip_tags no longer handling nested php tags When the strip tags state machine has been flattened, an if statement has mistakenly been treated as else if. We fix this, and also simplify a bit right away.
show more ...
|
#
e60c5073 |
| 02-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix #78179: MariaDB server version incorrectly detected
|
#
81efd489 |
| 02-Aug-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.2' into PHP-7.3 * PHP-7.2: Fix #78179: MariaDB server version incorrectly detected
|
#
f9f4a683 |
| 02-Aug-2019 |
Christoph M. Becker |
Fix #78179: MariaDB server version incorrectly detected As of MariaDB 10.0.2, the server reports a fake version number as work- around for replication issues[1]. We apply the same "fix"
Fix #78179: MariaDB server version incorrectly detected As of MariaDB 10.0.2, the server reports a fake version number as work- around for replication issues[1]. We apply the same "fix" as in the MariaDB client to cater to this. [1] <https://github.com/MariaDB/server/commit/c50ee6c23dbeb090963580754bec2f0a96ac0557#diff-5b45fa673c88c06a9651c7906364f592>
show more ...
|
#
d89157cd |
| 02-Aug-2019 |
Nikita Popov |
Add test for bug #78363 |
#
85e8ccd5 |
| 02-Aug-2019 |
Nikita Popov |
Fixed bug #78363 |
#
bab8b3a8 |
| 01-Aug-2019 |
Nikita Popov |
Add test for bug #78356 |
#
1f9a77ba |
| 31-Jul-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Fix 78213: Empty row pocket
|
#
8af14024 |
| 31-Jul-2019 |
Christoph M. Becker |
Fix 78213: Empty row pocket We have to ensure that we don't create an arena which is smaller than its header, regardless of the configured alignment. |
#
3e8774e5 |
| 30-Jul-2019 |
Peter Kokot |
Update NEWS |
#
8413df5e |
| 30-Jul-2019 |
Christoph M. Becker |
Merge branch 'PHP-7.3' into PHP-7.4 * PHP-7.3: Add security related NEWS entries [ci skip]
|
#
ef439abd |
| 30-Jul-2019 |
Christoph M. Becker |
Add security related NEWS entries [ci skip] |
#
b29ecec4 |
| 30-Jul-2019 |
Remi Collet |
add security NEW entries + reorder [ci skip] |
#
536c91c5 |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4
|
#
44fe025c |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.2' into PHP-7.3
|
#
dc7aa22b |
| 23-Jul-2019 |
Albert Casademont |
Fix bug #78326 Similar to what fread() does, truncate the stream_get_contents() result if the original buffer was way too large. |
#
76683ea9 |
| 29-Jul-2019 |
Christoph M. Becker |
Update NEWS [ci skip] The fix has been cherry-picked into PHP-7.3.8, so the bug will be fixed already there. |
#
a22a06c3 |
| 29-Jul-2019 |
Nikita Popov |
Merge branch 'PHP-7.3' into PHP-7.4
|
#
8e63bb5e |
| 29-Jul-2019 |
Nikita Popov |
Fixed bug #78341 The smart branch logic assumed b->start refers to the old offsets, while b->start was already adjusted to the new offsets at this point. Delay the change until later. |
#
68fd435b |
| 29-Jul-2019 |
Nikita Popov |
Fixed bug #78333 Don't dereference float/double values at unknown address, instead memcpy it into an aligned stack slot and dereference that. |