https://git.reactos.org/?p=reactos.git;a=commitdiff;h=80f8beeeeea3fe5a61fdc…
commit 80f8beeeeea3fe5a61fdc09d403b8203a6cde345
Author:     Jérôme Gardou <jerome.gardou(a)reactos.org>
AuthorDate: Thu Oct 22 15:26:21 2020 +0200
Commit:     Jérôme Gardou <jerome.gardou(a)reactos.org>
CommitDate: Tue Mar 30 17:13:19 2021 +0200
    [NTOS/MM] Remove an outdated check
---
 ntoskrnl/mm/marea.c | 3 ---
 1 file changed, 3 deletions(-)
diff --git a/ntoskrnl/mm/marea.c b/ntoskrnl/mm/marea.c
index 6e4226b6c35..92eebc173cb 100644
--- a/ntoskrnl/mm/marea.c
+++ b/ntoskrnl/mm/marea.c
@@ -588,9 +588,6 @@ MmDeleteProcessAddressSpace(PEPROCESS Process)
 #endif
     MmLockAddressSpace(&Process->Vm);
-    /* There should not be any memory areas left! */
-    ASSERT(Process->Vm.WorkingSetExpansionLinks.Flink == NULL);
-
 #if (_MI_PAGING_LEVELS == 2)
     {
         KIRQL OldIrql;