Module: wine Branch: master Commit: 6233eace9769ecc639b39dab7f41297811669244 URL: http://source.winehq.org/git/wine.git/?a=commit;h=6233eace9769ecc639b39dab7f...
Author: Hans Leidekker hans@codeweavers.com Date: Fri Nov 4 13:28:09 2016 +0100
msi: Run the installer in silent mode in RemoveExistingProducts.
Signed-off-by: Hans Leidekker hans@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/msi/action.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/dlls/msi/action.c b/dlls/msi/action.c index b35969b..34d1a25 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -7391,7 +7391,8 @@ static UINT ACTION_SetODBCFolders( MSIPACKAGE *package ) static UINT ITERATE_RemoveExistingProducts( MSIRECORD *rec, LPVOID param ) { static const WCHAR fmtW[] = - {'m','s','i','e','x','e','c',' ','/','i',' ','%','s',' ','R','E','M','O','V','E','=','%','s',0}; + {'m','s','i','e','x','e','c',' ','/','q','n',' ','/','i',' ','%','s',' ', + 'R','E','M','O','V','E','=','%','s',0}; MSIPACKAGE *package = param; const WCHAR *property = MSI_RecordGetString( rec, 7 ); int attrs = MSI_RecordGetInteger( rec, 5 );