msi: Set the action taken in the ProcessComponents and InstallFiles actions.
diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 0d0e333..028b4f0 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -2993,6 +2993,7 @@
else
MSIREG_DeleteUserDataComponentKey(comp->ComponentId, NULL);
}
+ comp->Action = comp->ActionRequest;
/* UI stuff */
uirow = MSI_CreateRecord(3);
diff --git a/dlls/msi/files.c b/dlls/msi/files.c
index 4050163..bb5b197 100644
--- a/dlls/msi/files.c
+++ b/dlls/msi/files.c
@@ -98,6 +98,8 @@
ui_progress(package,2,file->FileSize,0,0);
file->state = msifs_skipped;
}
+ else
+ file->Component->Action = INSTALLSTATE_LOCAL;
}
}