mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 22:54:25 +08:00
sync lz32_winetest with wine 1.1.35
svn path=/trunk/; revision=44706
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user