Piotr Caban : oleaut32: Set parameter to NULL in GetMops stub.

Alexandre Julliard julliard at winehq.org
Tue Mar 16 11:49:17 CDT 2010


Module: wine
Branch: master
Commit: 914472ab818c3726a0bfa1b86798636a838ec890
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=914472ab818c3726a0bfa1b86798636a838ec890

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Mon Mar 15 23:40:46 2010 +0100

oleaut32: Set parameter to NULL in GetMops stub.

---

 dlls/oleaut32/typelib.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c
index 87aba81..c3f5fc2 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;
 }
 




More information about the wine-cvs mailing list