mirror of
https://github.com/reactos/reactos.git
synced 2025-05-31 15:08:14 +00:00
[NTOS:MM] Fix broken ASSERT
There is no guarantee that all pages in the requested range actually exist.
This commit is contained in:
parent
4d605ec26f
commit
c6853581c5
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ MiAllocatePagesForMdl(IN PHYSICAL_ADDRESS LowAddress,
|
|||
// Get the PFN entry for this page
|
||||
//
|
||||
Pfn1 = MiGetPfnEntry(Page);
|
||||
ASSERT(Pfn1);
|
||||
if (!Pfn1) continue;
|
||||
|
||||
//
|
||||
// Make sure it's free and if this is our first pass, zeroed
|
||||
|
|
Loading…
Reference in a new issue