Commit e35f4ee1 authored by Ove Kaaven's avatar Ove Kaaven Committed by Alexandre Julliard

Don't ignore DISPATCH_METHOD in ITypeInfo::Invoke.

parent 5a538105
......@@ -3918,7 +3918,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
for(pFDesc=This->funclist; pFDesc; pFDesc=pFDesc->next)
if (pFDesc->funcdesc.memid == memid) {
if (pFDesc->funcdesc.invkind & (dwFlags & ~DISPATCH_METHOD))
if (pFDesc->funcdesc.invkind & dwFlags)
break;
}
if (pFDesc) {
......
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