From f919a24eb27093c1ed85ebc5d375198967cef3d2 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Tue, 11 Dec 2007 21:45:08 -0600 Subject: [PATCH] msi: Free the deformatted string. --- dlls/msi/custom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/custom.c b/dlls/msi/custom.c index 269aa3af02f..cf1e60bc64b 100644 --- a/dlls/msi/custom.c +++ b/dlls/msi/custom.c @@ -317,6 +317,7 @@ UINT ACTION_CustomAction(MSIPACKAGE *package, LPCWSTR action, UINT script, BOOL case 23: /* installs another package in the source tree */ deformat_string(package,target,&deformated); rc = HANDLE_CustomType23(package,source,deformated,type,action); + msi_free(deformated); break; case 50: /*EXE file specified by a property value */ rc = HANDLE_CustomType50(package,source,target,type,action);