mirror of
https://github.com/reactos/reactos.git
synced 2025-05-16 15:50:24 +00:00
[RTL]
Implement support for HEAP_CREATE_ALIGN_16 in RtlAllocateHeap() svn path=/trunk/; revision=69505
This commit is contained in:
parent
7feed70d00
commit
a6f57db58c
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue