28 Jan
2026
28 Jan
'26
9:22 a.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/time.c:
struct __timeb64 buf64;
_ftime64( &buf64 ); - buf->time = buf64.time; + buf->time = (buf64.time == (__time32_t)buf64.time) ? (__time32_t)buf64.time : -1;
This change doesn't match with native ucrtbase - `buf->time` should overflow as in current code. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9988#note_128283