wmvcore: Add missing *out=NULL in WMReader_QueryInterface.

QueryInterface should set *out to NULL on failure.
Also change the log level on failure to FIXME.
This commit is contained in:
Ivan Chikish 2023-02-08 03:17:14 +03:00 committed by Alexandre Julliard
parent efc7a42bd5
commit d6ccab8ecd

View file

@ -544,7 +544,8 @@ static HRESULT WINAPI WMReader_QueryInterface(IWMReader *iface, REFIID iid, void
*out = &reader->IReferenceClock_iface;
else
{
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
FIXME("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
*out = NULL;
return E_NOINTERFACE;
}