Commit f850364e authored by Misha Koshelev's avatar Misha Koshelev Committed by Alexandre Julliard

msi: automation: Remove duplicate error messages on unknown dispid.

DISP_E_MEMBERNOTFOUND FIXME is already handled in AutomationObject_Invoke.
parent b70bc731
......@@ -830,7 +830,6 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
break;
default:
ERR("Member not found: %d\n", dispIdMember);
return DISP_E_MEMBERNOTFOUND;
}
......@@ -1849,7 +1848,6 @@ static HRESULT WINAPI InstallerImpl_Invoke(
break;
default:
ERR("Member not found: %d\n", dispIdMember);
return DISP_E_MEMBERNOTFOUND;
}
......
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