From ba180b8600c3fa65135519c196e8d83496961a5b Mon Sep 17 00:00:00 2001 From: Andrew Nguyen Date: Fri, 9 Jul 2010 04:10:08 -0500 Subject: [PATCH] msi/tests: Free the user SID string buffer with the correct deallocator in the source tests. --- dlls/msi/tests/source.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msi/tests/source.c b/dlls/msi/tests/source.c index 1826f2175be..274cb43fda9 100644 --- a/dlls/msi/tests/source.c +++ b/dlls/msi/tests/source.c @@ -1001,7 +1001,7 @@ static void test_MsiSourceListAddSourceEx(void) RegCloseKey(url); RegCloseKey(prodkey); - HeapFree(GetProcessHeap(), 0, usersid); + LocalFree(usersid); } static void test_MsiSourceListEnumSources(void) -- 2.11.4.GIT