Hans Leidekker : msi: Don't set the Installed property twice.
Module: wine Branch: master Commit: 46ac59f988b27de395bbf731f323b986ae2a7802 URL: http://source.winehq.org/git/wine.git/?a=commit;h=46ac59f988b27de395bbf731f3... Author: Hans Leidekker <hans(a)codeweavers.com> Date: Tue Sep 29 14:57:06 2009 +0200 msi: Don't set the Installed property twice. --- dlls/msi/msi.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/dlls/msi/msi.c b/dlls/msi/msi.c index ba9d8bf..2a66d60 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);
participants (1)
-
Alexandre Julliard