Hans Leidekker : msi/tests: Free the string returned from ConvertSidToStringSid.
Module: wine Branch: master Commit: 394a437723273a43bd96acc8513de0245b99581c URL: http://source.winehq.org/git/wine.git/?a=commit;h=394a437723273a43bd96acc851... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Fri Oct 23 10:48:24 2009 +0200 msi/tests: Free the string returned from ConvertSidToStringSid. Found by valgrind. --- dlls/msi/tests/package.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c index 88ffa61..903e2ac 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)
participants (1)
-
Alexandre Julliard