mstask/tests: Replace realloc() with HeapReAlloc().

Francois Gouget fgouget at free.fr
Tue May 19 04:20:57 CDT 2009


---
 dlls/mstask/tests/task.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/dlls/mstask/tests/task.c b/dlls/mstask/tests/task.c
index 328dd76..a0a851a 100644
--- a/dlls/mstask/tests/task.c
+++ b/dlls/mstask/tests/task.c
@@ -38,7 +38,11 @@ static char *get_tmp_space(int size)
     int idx;
 
     idx = ++pos % (sizeof(list)/sizeof(list[0]));
-    if ((ret = realloc(list[idx], size)))
+    if (list[idx])
+        ret = HeapReAlloc( GetProcessHeap(), 0, list[idx], size );
+    else
+        ret = HeapAlloc( GetProcessHeap(), 0, size );
+    if (ret)
         list[idx] = ret;
     return ret;
 }
-- 
1.6.2.4




More information about the wine-patches mailing list