From 95282bdeaaed1f0d5ef5cea1f00b1d7239e5ec0d Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 19 May 2008 02:28:50 -0500 Subject: [PATCH] msi: Reset the hasLocalFeature flag when updating components. --- dlls/msi/helpers.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/msi/helpers.c b/dlls/msi/helpers.c index 223cacd5ad2..3ff47ed976f 100644 --- a/dlls/msi/helpers.c +++ b/dlls/msi/helpers.c @@ -921,6 +921,8 @@ void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature) ComponentList *clist; MSIFEATURE *f; + component->hasLocalFeature = FALSE; + msi_component_set_state( component, newstate ); /*if any other feature wants is local we need to set it local*/ @@ -939,6 +941,7 @@ void ACTION_UpdateComponentStates(MSIPACKAGE *package, LPCWSTR szFeature) f->ActionRequest == INSTALLSTATE_SOURCE) ) { TRACE("Saved by %s\n", debugstr_w(f->Feature)); + component->hasLocalFeature = TRUE; if (component->Attributes & msidbComponentAttributesOptional) {