Author: cwittich Date: Mon Mar 1 14:53:34 2010 New Revision: 45743
URL: http://svn.reactos.org/svn/reactos?rev=45743&view=rev Log: [MSI] hackfix ITERATE_SelfRegModules not to hang on error
Modified: trunk/reactos/dll/win32/msi/action.c
Modified: trunk/reactos/dll/win32/msi/action.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/msi/action.c?rev=... ============================================================================== --- trunk/reactos/dll/win32/msi/action.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/msi/action.c [iso-8859-1] Mon Mar 1 14:53:34 2010 @@ -3761,7 +3761,7 @@ MSIFILE *file; DWORD len; static const WCHAR ExeStr[] = - {'r','e','g','s','v','r','3','2','.','e','x','e',' ','"',0}; + {'r','e','g','s','v','r','3','2','.','e','x','e',' ',' /',' s',' ','"',0}; static const WCHAR close[] = {'"',0}; STARTUPINFOW si; PROCESS_INFORMATION info; @@ -3840,7 +3840,7 @@ static UINT ITERATE_SelfUnregModules( MSIRECORD *row, LPVOID param ) { static const WCHAR regsvr32[] = - {'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','u',' ','"',0}; + {'r','e','g','s','v','r','3','2','.','e','x','e',' ','/','u',' ','/','s',' ','"',0}; static const WCHAR close[] = {'"',0}; MSIPACKAGE *package = param; LPCWSTR filename;