[NTOSKRNL] Revert f71588ff as it seems to break the tests

This commit is contained in:
Eric Kohl 2019-04-20 23:26:57 +02:00
parent f62a4b2015
commit cfe54aa4b5

View file

@ -703,7 +703,8 @@ NtPowerInformation(IN POWER_INFORMATION_LEVEL PowerInformationLevel,
{
/* Just zero the struct (and thus set BatteryState->BatteryPresent = FALSE) */
RtlZeroMemory(BatteryState, sizeof(SYSTEM_BATTERY_STATE));
BatteryState->AcOnLine = TRUE;
BatteryState->EstimatedTime = MAXULONG;
// BatteryState->AcOnLine = TRUE;
Status = STATUS_SUCCESS;
}