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

msi: Don't reinstall components shared with other products.

parent 9f56598f
......@@ -812,7 +812,7 @@ INSTALLSTATE msi_get_component_action( MSIPACKAGE *package, MSICOMPONENT *comp )
if (comp->num_clients > 0 && comp->ActionRequest == INSTALLSTATE_ABSENT)
{
TRACE("%s has %u clients left\n", debugstr_w(comp->Component), comp->num_clients);
return comp->Installed;
return INSTALLSTATE_UNKNOWN;
}
return comp->ActionRequest;
}
......
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