Commit 3d5f1edf authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

advapi32/tests: Replace realloc() with HeapReAlloc().

parent 4a558538
......@@ -52,7 +52,11 @@ static char *get_temp_buffer( int size )
UINT idx;
idx = ++pos % (sizeof(list)/sizeof(list[0]));
if ((ret = realloc( list[idx], size ))) list[idx] = ret;
if (list[idx])
ret = HeapReAlloc( GetProcessHeap(), 0, list[idx], size );
else
ret = HeapAlloc( GetProcessHeap(), 0, size );
if (ret) list[idx] = ret;
return ret;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment