[NTOS:KE:X64] Fix KiWriteSystemTime

This commit is contained in:
Timo Kreuzer 2019-12-31 09:04:11 +01:00
parent 7e6dce6aa1
commit eda01e5be7

View file

@ -31,8 +31,8 @@ KiWriteSystemTime(volatile KSYSTEM_TIME *SystemTime, ULARGE_INTEGER NewTime)
/* Update in 3 steps, so that a reader can recognize partial updates */
SystemTime->High1Time = NewTime.HighPart;
SystemTime->LowPart = NewTime.LowPart;
SystemTime->High2Time = NewTime.HighPart;
#endif
SystemTime->High2Time = NewTime.HighPart;
}
FORCEINLINE