From 356970e529d274f0f07acddd62dbf39ff82b18a2 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Fri, 11 May 2007 15:28:40 +0100 Subject: [PATCH] oleaut32: Fix return value in the element not found case. --- dlls/oleaut32/tests/typelib.c | 4 ---- dlls/oleaut32/typelib.c | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c index fced34b8cd9..d67e315cbbb 100644 --- a/dlls/oleaut32/tests/typelib.c +++ b/dlls/oleaut32/tests/typelib.c @@ -623,9 +623,7 @@ todo_wine { /* Should have six methods */ hr = ITypeInfo_GetFuncDesc(pTI, 6, &pFD); -todo_wine{ ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr); -} hr = ITypeInfo_GetFuncDesc(pTI, 5, &pFD); todo_wine { ok(hr == S_OK, "hr %08x\n", hr); @@ -662,9 +660,7 @@ todo_wine { ITypeInfo_ReleaseTypeAttr(pTI_p, pTA); ITypeInfo_Release(pTI_p); hr = ITypeInfo_GetFuncDesc(pTI, 1, &pFD); -todo_wine { ok(hr == TYPE_E_ELEMENTNOTFOUND, "hr %08x\n", hr); - } hr = ITypeInfo_GetFuncDesc(pTI, 0, &pFD); ok(hr == S_OK, "hr %08x\n", hr); ok(pFD->memid == 0x1c, "memid %08x\n", pFD->memid); diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 6c663ac1e2e..857145eca6c 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -4692,7 +4692,7 @@ HRESULT ITypeInfoImpl_GetInternalFuncDesc( ITypeInfo *iface, UINT index, const F return S_OK; } - return E_INVALIDARG; + return TYPE_E_ELEMENTNOTFOUND; } /* internal function to make the inherited interfaces' methods appear