From fe408085b75ca658af3cbaf7e50e02791a4a5897 Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Tue, 5 Oct 2010 04:56:04 +0000 Subject: [PATCH] [NTOS]: We don't support SEC_BASED for ARM3 sectios either, ASSERT that. svn path=/trunk/; revision=48987 --- reactos/ntoskrnl/mm/ARM3/section.c | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/ntoskrnl/mm/ARM3/section.c b/reactos/ntoskrnl/mm/ARM3/section.c index ea6b3c29b2f..a2505a81010 100644 --- a/reactos/ntoskrnl/mm/ARM3/section.c +++ b/reactos/ntoskrnl/mm/ARM3/section.c @@ -592,6 +592,7 @@ MmCreateArm3Section(OUT PVOID *SectionObject, ASSERT(FileHandle == NULL); ASSERT(FileObject == NULL); ASSERT((AllocationAttributes & SEC_LARGE_PAGES) == 0); + ASSERT((AllocationAttributes & SEC_BASED) == 0); /* Make the same sanity checks that the Nt interface should've validated */ ASSERT((AllocationAttributes & ~(SEC_COMMIT | SEC_RESERVE | SEC_BASED |