Commit 258fc713 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

msi: Ignore unknown components in the FeatureComponents table.

parent 6351cd82
...@@ -1048,10 +1048,9 @@ static UINT iterate_load_featurecomponents(MSIRECORD *row, LPVOID param) ...@@ -1048,10 +1048,9 @@ static UINT iterate_load_featurecomponents(MSIRECORD *row, LPVOID param)
comp = msi_get_loaded_component( ilfs->package, component ); comp = msi_get_loaded_component( ilfs->package, component );
if (!comp) if (!comp)
{ {
ERR("unknown component %s\n", debugstr_w(component)); WARN("ignoring unknown component %s\n", debugstr_w(component));
return ERROR_FUNCTION_FAILED; return ERROR_SUCCESS;
} }
add_feature_component( ilfs->feature, comp ); add_feature_component( ilfs->feature, comp );
comp->Enabled = TRUE; comp->Enabled = TRUE;
......
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