Commit d6ccab8e authored by Ivan Chikish's avatar Ivan Chikish Committed by Alexandre Julliard

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.
parent efc7a42b
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment