mirror of
https://github.com/reactos/wine.git
synced 2025-04-04 09:01:57 +00:00
lz32/tests: Replace malloc() with HeapAlloc().
This commit is contained in:
parent
d7c5f1a90b
commit
ea58ea76e2
@ -881,10 +881,10 @@ static void test_LZOpenFileW(void)
|
||||
|
||||
START_TEST(lzexpand_main)
|
||||
{
|
||||
buf = malloc(uncompressed_data_size * 2);
|
||||
buf = HeapAlloc(GetProcessHeap(), 0, uncompressed_data_size * 2);
|
||||
test_LZOpenFileA();
|
||||
test_LZOpenFileW();
|
||||
test_LZRead();
|
||||
test_LZCopy();
|
||||
free(buf);
|
||||
HeapFree(GetProcessHeap(), 0, buf);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user