Commit cda63b8a authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Don't attempt to patch files if the component action resolves to anything…

msi: Don't attempt to patch files if the component action resolves to anything other than INSTALLSTATE_LOCAL.
parent 9711cdbc
......@@ -497,6 +497,7 @@ UINT ACTION_PatchFiles( MSIPACKAGE *package )
LIST_FOR_EACH_ENTRY( patch, &package->filepatches, MSIFILEPATCH, entry )
{
MSIFILE *file = patch->File;
MSICOMPONENT *comp = file->Component;
rc = msi_load_media_info( package, patch->Sequence, mi );
if (rc != ERROR_SUCCESS)
......@@ -504,7 +505,8 @@ UINT ACTION_PatchFiles( MSIPACKAGE *package )
ERR("Unable to load media info for %s (%u)\n", debugstr_w(file->File), rc);
return ERROR_FUNCTION_FAILED;
}
if (!file->Component->Enabled) continue;
comp->Action = msi_get_component_action( package, comp );
if (!comp->Enabled || comp->Action != INSTALLSTATE_LOCAL) continue;
if (!patch->IsApplied)
{
......
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