mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:21:51 +00:00
sync lz32_winetest with wine 1.1.35
svn path=/trunk/; revision=44706
This commit is contained in:
parent
f46012e33b
commit
ca97d9f41d
1 changed files with 2 additions and 2 deletions
|
@ -881,10 +881,10 @@ static void test_LZOpenFileW(void)
|
||||||
|
|
||||||
START_TEST(lzexpand_main)
|
START_TEST(lzexpand_main)
|
||||||
{
|
{
|
||||||
buf = malloc(uncompressed_data_size * 2);
|
buf = HeapAlloc(GetProcessHeap(), 0, uncompressed_data_size * 2);
|
||||||
test_LZOpenFileA();
|
test_LZOpenFileA();
|
||||||
test_LZOpenFileW();
|
test_LZOpenFileW();
|
||||||
test_LZRead();
|
test_LZRead();
|
||||||
test_LZCopy();
|
test_LZCopy();
|
||||||
free(buf);
|
HeapFree(GetProcessHeap(), 0, buf);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue