18 Feb
2026
18 Feb
'26
9:54 p.m.
From: Paul Gofman <pgofman@codeweavers.com> --- server/fd.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/fd.c b/server/fd.c index f70bec354a3..2f21f833411 100644 --- a/server/fd.c +++ b/server/fd.c @@ -389,9 +389,8 @@ static void set_user_shared_data_time(void) { now = time( NULL ); tm = gmtime( &now ); + tm->tm_isdst = -1; timezone_bias = mktime( tm ) - now; - tm = localtime( &now ); - if (tm->tm_isdst) timezone_bias -= 3600; timezone_bias *= TICKS_PER_SEC; atomic_store_long(&user_shared_data->TimeZoneBias.High2Time, timezone_bias >> 32); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10134