oleaut32: IPropertyBag_Read_Proxy return on unknown type (Coverity 892).

This commit is contained in:
Marcus Meissner 2009-04-04 18:15:16 +02:00 committed by Alexandre Julliard
parent 7c8d07bc10
commit a9c0c247ed
1 changed files with 2 additions and 1 deletions

View File

@ -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,