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!)