oleaut32: Set parameter to NULL in GetMops stub.

This commit is contained in:
Piotr Caban 2010-03-15 23:40:46 +01:00 committed by Alexandre Julliard
parent 2184674779
commit 914472ab81
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}