From 394a437723273a43bd96acc8513de0245b99581c Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Fri, 23 Oct 2009 10:48:24 +0200 Subject: [PATCH] msi/tests: Free the string returned from ConvertSidToStringSid. Found by valgrind. --- dlls/msi/tests/package.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index 88ffa61340..903e2acc21 100644 --- a/dlls/msi/tests/package.c +++ b/dlls/msi/tests/package.c @@ -7691,6 +7691,7 @@ static void test_appsearch_complocator(void) DeleteFileA("FileName10.dll"); MsiCloseHandle(hpkg); DeleteFileA(msifile); + LocalFree(usersid); } static void test_appsearch_reglocator(void)