[RTL]
authorPierre Schweitzer <pierre@reactos.org>
Sun, 11 Oct 2015 21:10:46 +0000 (21:10 +0000)
committerPierre Schweitzer <pierre@reactos.org>
Sun, 11 Oct 2015 21:10:46 +0000 (21:10 +0000)
Implement support for HEAP_CREATE_ALIGN_16 in RtlAllocateHeap()

svn path=/trunk/; revision=69505

reactos/lib/rtl/heap.c

index 80be5bd..c6df449 100644 (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);
     }