[NTOS:MM] MiGetPageTableForProcess(): #if out unreachable code

No impact.

Detected by Cppcheck: unreachableCode.
Addendum to ddaf47dec3 (r34976).
This commit is contained in:
Serge Gautherie
2020-05-22 20:24:31 +02:00
committed by Timo Kreuzer
parent 1e512e29dc
commit a72b78558d

View File

@@ -182,7 +182,9 @@ MiGetPageTableForProcess(IN PEPROCESS Process,
//
// THIS WHOLE PATH IS TODO
//
#if 1
goto kernelHack;
#else
ASSERT(FALSE);
//
@@ -200,6 +202,7 @@ MiGetPageTableForProcess(IN PEPROCESS Process,
// Set it
//
*PointerPde = TempPde;
#endif
}
}