From: Christoph von Wittich Date: Tue, 22 Dec 2009 11:42:28 +0000 (+0000) Subject: sync lz32_winetest with wine 1.1.35 X-Git-Tag: backups/aicom-network-stable@46924~206 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=ca97d9f41d854ecdead849dee00b49f0fc535962;hp=f46012e33b798b8593a8f62cd0d757cf5339aea6;ds=inline sync lz32_winetest with wine 1.1.35 svn path=/trunk/; revision=44706 --- diff --git a/rostests/winetests/lz32/lzexpand_main.c b/rostests/winetests/lz32/lzexpand_main.c index 91fd6873e3f..3e46fb0a47c 100644 --- a/rostests/winetests/lz32/lzexpand_main.c +++ b/rostests/winetests/lz32/lzexpand_main.c @@ -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); }