Module: wine Branch: master Commit: a9c0c247edf0ace58bbdd9b21737f3c6380ad405 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a9c0c247edf0ace58bbdd9b217...
Author: Marcus Meissner marcus@jet.franken.de Date: Sat Apr 4 18:15:16 2009 +0200
oleaut32: IPropertyBag_Read_Proxy return on unknown type (Coverity 892).
---
dlls/oleaut32/usrmarshal.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/usrmarshal.c b/dlls/oleaut32/usrmarshal.c index a119c28..14c655c 100644 --- a/dlls/oleaut32/usrmarshal.c +++ b/dlls/oleaut32/usrmarshal.c @@ -2041,7 +2041,8 @@ HRESULT CALLBACK IPropertyBag_Read_Proxy( FIXME("Safearray support not yet implemented.\n"); return E_NOTIMPL; default: - break; + FIXME("Unknown V_VT %d - support not yet implemented.\n", V_VT(pVar)); + return E_NOTIMPL; }
return IPropertyBag_RemoteRead_Proxy(This, pszPropName, pVar, pErrorLog,