hidclass.sys: Use realloc instead of HeapReAlloc.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51223 Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9f2518b47c
commit
06fb03378d
|
@ -199,7 +199,7 @@ UINT RingBuffer_AddPointer(struct ReportRingBuffer *ring)
|
|||
{
|
||||
int count = idx = ring->pointer_alloc;
|
||||
ring->pointer_alloc *= 2;
|
||||
ring->pointers = HeapReAlloc(GetProcessHeap(), 0, ring->pointers, sizeof(UINT) * ring->pointer_alloc);
|
||||
ring->pointers = realloc(ring->pointers, sizeof(UINT) * ring->pointer_alloc);
|
||||
for( ;count < ring->pointer_alloc; count++)
|
||||
ring->pointers[count] = POINTER_UNUSED;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue