Commit 1a896348 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

msi: Remove a legacy error check.

parent 35a6782d
...@@ -695,12 +695,6 @@ UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath, ...@@ -695,12 +695,6 @@ UINT MSI_InstallPackage( MSIPACKAGE *package, LPCWSTR szPackagePath,
else else
rc = ACTION_ProcessExecSequence(package,FALSE); rc = ACTION_ProcessExecSequence(package,FALSE);
if (rc == -1)
{
/* install was halted but should be considered a success */
rc = ERROR_SUCCESS;
}
package->script->CurrentlyScripting= FALSE; package->script->CurrentlyScripting= FALSE;
/* process the ending type action */ /* process the ending type action */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment