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

winegstreamer: Add missing *out=NULL in unknown_inner_QueryInterface.

QueryInterface should set *out to NULL on failure. Also change the log level on failure to FIXME.
parent cd2002fd
......@@ -1700,7 +1700,8 @@ static HRESULT WINAPI unknown_inner_QueryInterface(IUnknown *iface, REFIID iid,
*out = &reader->IWMReaderTimecode_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