From ff01912a484f0907b9562d5bf93569144ba4a72c Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 28 Jun 2007 23:00:54 +0200 Subject: [PATCH] comctl32: Replace malloc() with HeapAlloc(). --- dlls/comctl32/tests/comboex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/comctl32/tests/comboex.c b/dlls/comctl32/tests/comboex.c index 8943d82bdd2..f4d8fc8103f 100644 --- a/dlls/comctl32/tests/comboex.c +++ b/dlls/comctl32/tests/comboex.c @@ -82,7 +82,7 @@ static void test_comboboxex(void) { out_of_range_item[] = {'O','u','t',' ','o','f',' ','R','a','n','g','e',' ','I','t','e','m',0}; /* Allocate space for result */ - textBuffer = malloc(MAX_CHARS); + textBuffer = HeapAlloc(GetProcessHeap(), 0, MAX_CHARS); /* Basic comboboxex test */ myHwnd = createComboEx(WS_BORDER | WS_VISIBLE | WS_CHILD | CBS_DROPDOWN); @@ -168,7 +168,7 @@ static void test_comboboxex(void) { /* Cleanup */ - free(textBuffer); + HeapFree(GetProcessHeap(), 0, textBuffer); } -- 2.11.4.GIT