oleaut32: Revert check for FUNCFLAG_FRESTRICTED in ITypeInfo::Invoke.

The change caused regressions in a number of applications and needs more 
study to see what the correct behaviour should be.
oldstable
Robert Shearman 2006-07-17 20:19:32 +01:00 committed by Alexandre Julliard
parent 2dc451e181
commit ad6b0dc281
2 changed files with 3 additions and 2 deletions

View File

@ -471,7 +471,9 @@ static void test_TypeInfo(void)
/* test invoking a method with a [restricted] keyword */
hr = ITypeInfo_Invoke(pTypeInfo, NULL, dispidMember, DISPATCH_METHOD, &dispparams, NULL, NULL, NULL);
todo_wine {
ok(hr == DISP_E_MEMBERNOTFOUND, "ITypeInfo_Invoke should have returned DISP_E_MEMBERNOTFOUND instead of 0x%08lx\n", hr);
}
ITypeInfo_Release(pTypeInfo);
ITypeLib_Release(pTypeLib);

View File

@ -5224,8 +5224,7 @@ static HRESULT WINAPI ITypeInfo_fnInvoke(
* FUNCDESC for dispinterfaces and we want the real function description */
for (pFuncInfo = This->funclist; pFuncInfo; pFuncInfo=pFuncInfo->next)
if ((memid == pFuncInfo->funcdesc.memid) &&
(wFlags & pFuncInfo->funcdesc.invkind) &&
!(pFuncInfo->funcdesc.wFuncFlags & FUNCFLAG_FRESTRICTED))
(wFlags & pFuncInfo->funcdesc.invkind))
break;
if (pFuncInfo) {