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

Hans Leidekker hans at codeweavers.com
Thu Sep 13 06:43:37 CDT 2012


---
 dlls/msi/action.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msi/action.c b/dlls/msi/action.c
index 845a0fd..f29be2b 100644
--- a/dlls/msi/action.c
+++ b/dlls/msi/action.c
@@ -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;
 }
-- 
1.7.10.4






More information about the wine-patches mailing list