[NTOS:KE:X64] Fix KiWriteSystemTime

This commit is contained in:
Timo Kreuzer
2020-10-31 14:23:16 +01:00
parent 7e6dce6aa1
commit eda01e5be7
+1 -1
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