From e62b8c9b99313d5cdd44824230ba1107e14d7506 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Tue, 11 Dec 2007 21:45:51 -0600 Subject: [PATCH] msi: Free the user sid string. --- dlls/msi/registry.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/registry.c b/dlls/msi/registry.c index beaecae073b..834eda04e2f 100644 --- a/dlls/msi/registry.c +++ b/dlls/msi/registry.c @@ -760,6 +760,7 @@ UINT MSIREG_DeleteUserDataComponentKey(LPCWSTR szComponent) sprintfW(keypath, szUserDataComp_fmt, usersid, comp); + msi_free(usersid); return RegDeleteTreeW(HKEY_LOCAL_MACHINE, keypath); }