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" );
Can you pull this FIXME out of this if statement so it's printed unconditionally? (Otherwise, I'd like some tests for `STATUS_INFO_LENGTH_MISMATCH` case. Thanks!) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7229#note_93288