summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--TSRM/tsrm_win32.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 72451dbc1e..541f16ea55 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,9 @@ PHP NEWS
- Recode:
. Unbundled the recode extension. (cmb)
+- Standard:
+ . Fixed bug #78282 (atime and mtime mismatch). (cmb)
+
11 Jul 2019, PHP 7.4.0alpha3
- Core:
diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c
index e510c61426..e16c946131 100644
--- a/TSRM/tsrm_win32.c
+++ b/TSRM/tsrm_win32.c
@@ -769,7 +769,7 @@ static zend_always_inline void UnixTimeToFileTime(time_t t, LPFILETIME pft) /* {
// Note that LONGLONG is a 64-bit value
LONGLONG ll;
- ll = t * 10000000 + 116444736000000000;
+ ll = t * 10000000LL + 116444736000000000LL;
pft->dwLowDateTime = (DWORD)ll;
pft->dwHighDateTime = ll >> 32;
}