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)
comp = msi_get_loaded_component( ilfs->package, component );
if (!comp)
{
ERR("unknown component %s\n", debugstr_w(component));
return ERROR_FUNCTION_FAILED;
WARN("ignoring unknown component %s\n", debugstr_w(component));
return ERROR_SUCCESS;
}
add_feature_component( ilfs->feature, comp );
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