Fix missing assignment of PointerPte
All checks were successful
Builds / ExectOS (i686, debug) (push) Successful in 35s
Builds / ExectOS (amd64, release) (push) Successful in 46s
Builds / ExectOS (amd64, debug) (push) Successful in 46s
Builds / ExectOS (i686, release) (push) Successful in 34s

This commit is contained in:
2026-02-03 20:17:28 +01:00
parent eb0957dbd4
commit fae72f5326

View File

@@ -160,7 +160,7 @@ MM::KernelPool::FreeKernelStack(IN PVOID Stack,
ULONG Index; ULONG Index;
/* Get the PTE for the top of the stack, including the guard page */ /* Get the PTE for the top of the stack, including the guard page */
MM::Paging::AdvancePte(MM::Paging::GetPteAddress(Stack), -1); PointerPte = MM::Paging::AdvancePte(MM::Paging::GetPteAddress(Stack), -1);
/* Convert the stack size into a page count */ /* Convert the stack size into a page count */
StackPages = SIZE_TO_PAGES(StackSize); StackPages = SIZE_TO_PAGES(StackSize);