commit | 419ecb35e113d163d449cf128ce3d144854efef0 | [log] [tgz] |
---|---|---|
author | Francois Gouget <fgouget@free.fr> | Tue May 19 11:20:57 2009 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue May 19 12:01:04 2009 +0200 |
tree | f458524c0a9652b275f5106ab35c01c68e66bbfb | |
parent | 441bc63538340d3b15d00939eb420a8cde30ad6a [diff] |
mstask/tests: Replace realloc() with HeapReAlloc().
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 @@ 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; }