[ros-diffs] [cwittich] 44706: sync lz32_winetest with wine 1.1.35

cwittich at svn.reactos.org cwittich at svn.reactos.org
Tue Dec 22 12:42:28 CET 2009


Author: cwittich
Date: Tue Dec 22 12:42:28 2009
New Revision: 44706

URL: http://svn.reactos.org/svn/reactos?rev=44706&view=rev
Log:
sync lz32_winetest with wine 1.1.35

Modified:
    trunk/rostests/winetests/lz32/lzexpand_main.c

Modified: trunk/rostests/winetests/lz32/lzexpand_main.c
URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/lz32/lzexpand_main.c?rev=44706&r1=44705&r2=44706&view=diff
==============================================================================
--- trunk/rostests/winetests/lz32/lzexpand_main.c [iso-8859-1] (original)
+++ trunk/rostests/winetests/lz32/lzexpand_main.c [iso-8859-1] Tue Dec 22 12:42:28 2009
@@ -881,10 +881,10 @@
 
 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);
+}




More information about the Ros-diffs mailing list