[NTOS]: We don't support SEC_BASED for ARM3 sectios either, ASSERT that.

svn path=/trunk/; revision=48987
This commit is contained in:
Sir Richard 2010-10-05 04:56:04 +00:00
parent d2d2aa1188
commit fe408085b7

View file

@ -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 |