From d532303b7fb2a0d84c48d887f846b64df155859d Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sun, 3 May 2026 14:39:14 +0200 Subject: [PATCH] Fix incorrect SystemTime reference in KE::SharedData::GetInterruptTime function --- xtoskrnl/ke/shdata.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xtoskrnl/ke/shdata.cc b/xtoskrnl/ke/shdata.cc index 713d6ad..1e8b98d 100644 --- a/xtoskrnl/ke/shdata.cc +++ b/xtoskrnl/ke/shdata.cc @@ -29,10 +29,10 @@ KE::SharedData::GetInterruptTime(VOID) do { /* Read the primary high part and low part */ - InterruptTime.HighPart = KernelSharedData->SystemTime.High1Part; - InterruptTime.LowPart = KernelSharedData->SystemTime.LowPart; + InterruptTime.HighPart = KernelSharedData->InterruptTime.High1Part; + InterruptTime.LowPart = KernelSharedData->InterruptTime.LowPart; } - while(InterruptTime.HighPart != KernelSharedData->SystemTime.High2Part); + while(InterruptTime.HighPart != KernelSharedData->InterruptTime.High2Part); /* Return the 64-bit time */ return InterruptTime;