summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2019-07-03 09:59:17 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2019-07-03 09:59:17 +0200
commit44c8b7414ce96038017edc2fd827f8250669a62a (patch)
treeec317c10a02bd2a1b66505550170bfc6ac6db2f7 /NEWS
parent32c68428a9888e3776441ed39c85b8b49f08fb88 (diff)
downloadphp-git-44c8b7414ce96038017edc2fd827f8250669a62a.tar.gz
Fix #78241: touch() does not handle dates after 2038 in PHP 64-bit
`time_t` defaults to `_time64` (which is 64bit signed) even on x86, but `Int32x32To64()` truncates it to signed 32bit. We replace the macro with the "manual" calculation.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 078d61c1eb..4c05f42773 100644
--- a/NEWS
+++ b/NEWS
@@ -21,6 +21,9 @@ PHP NEWS
. Fixed #78189 (file cache strips last character of uname hash). (cmb)
. Fixed #78202 (Opcache stats for cache hits are capped at 32bit NUM). (cmb)
+- Standard:
+ . Fixed #78241 (touch() does not handle dates after 2038 in PHP 64-bit). (cmb)
+
27 Jun 2019, PHP 7.2.20
- Core: