[NTOS/MM]

- Addendum to r72472 : address nodes are not VADs for the base section AVL table
CORE-11900

svn path=/trunk/; revision=72473
This commit is contained in:
Jérôme Gardou 2016-08-27 13:22:17 +00:00
parent 707280b695
commit acd35552c3

View file

@ -378,7 +378,7 @@ MiRemoveNode(IN PMMADDRESS_NODE Node,
/* Free the node from ReactOS view as well */ /* Free the node from ReactOS view as well */
Vad = (PMMVAD_LONG)Node; Vad = (PMMVAD_LONG)Node;
if (Vad->u.VadFlags.Spare == 0) if ((Table != &MmSectionBasedRoot) && (Vad->u.VadFlags.Spare == 0))
{ {
PMEMORY_AREA MemoryArea; PMEMORY_AREA MemoryArea;
PEPROCESS Process; PEPROCESS Process;