sync lz32_winetest with wine 1.1.35

svn path=/trunk/; revision=44706
This commit is contained in:
Christoph von Wittich 2009-12-22 11:42:28 +00:00
parent f46012e33b
commit ca97d9f41d

View file

@ -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);
}