From 914472ab818c3726a0bfa1b86798636a838ec890 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Mon, 15 Mar 2010 23:40:46 +0100 Subject: [PATCH] oleaut32: Set parameter to NULL in GetMops stub. --- dlls/oleaut32/typelib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 87aba814ca2..c3f5fc25be0 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -6872,7 +6872,8 @@ static HRESULT WINAPI ITypeInfo_fnGetMops( ITypeInfo2 *iface, MEMBERID memid, BSTR *pBstrMops) { ITypeInfoImpl *This = (ITypeInfoImpl *)iface; - FIXME("(%p) stub!\n", This); + FIXME("(%p %d) stub!\n", This, memid); + *pBstrMops = NULL; return S_OK; }