Implement support for HEAP_CREATE_ALIGN_16 in RtlAllocateHeap()

svn path=/trunk/; revision=69505
This commit is contained in:
Pierre Schweitzer 2015-10-11 21:10:46 +00:00
parent 7feed70d00
commit a6f57db58c

View file

@ -1930,8 +1930,7 @@ RtlAllocateHeap(IN PVOID HeapPtr,
return NULL;
}
if (Flags & (HEAP_CREATE_ENABLE_TRACING |
HEAP_CREATE_ALIGN_16))
if (Flags & (HEAP_CREATE_ENABLE_TRACING))
{
DPRINT1("HEAP: RtlAllocateHeap is called with unsupported flags %x, ignoring\n", Flags);
}