From 46ac59f988b27de395bbf731f323b986ae2a7802 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Tue, 29 Sep 2009 14:57:06 +0200 Subject: [PATCH] msi: Don't set the Installed property twice. --- dlls/msi/msi.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index ba9d8bf6b1..2a66d601a8 100644 --- a/dlls/msi/msi.c +++ b/dlls/msi/msi.c @@ -693,9 +693,6 @@ UINT WINAPI MsiConfigureProductExW(LPCWSTR szProduct, int iInstallLevel, if (szCommandLine) lstrcpyW(commandline,szCommandLine); - if (MsiQueryProductStateW(szProduct) != INSTALLSTATE_UNKNOWN) - lstrcatW(commandline,szInstalled); - if (eInstallState == INSTALLSTATE_ABSENT) lstrcatW(commandline, szRemoveAll);