30 Jan
2025
30 Jan
'25
3 p.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/unix/system.c:
case SystemCpuSetInformation: /* 175 */ return NtQuerySystemInformationEx(class, NULL, 0, info, size, ret_size);
+ case SystemLeapSecondInformation: /* 206 */ + { + struct + { + BOOLEAN enabled; + ULONG flags; + } *leap = info; + + len = sizeof(*leap); + if (size >= len) + { + FIXME( "SystemLeapSecondInformation - stub\n" ); + leap->enabled = 1;
Since it's BOOLEAN: ```suggestion:-0+0 leap->enabled = TRUE; ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7229#note_93287