vbscript: Silence BuiltinDisp::QueryInterface(IID_IDispatchEx) warning.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2019-10-31 19:16:07 +01:00 committed by Alexandre Julliard
parent 18117ccbab
commit ce6c9f6d33
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ static HRESULT WINAPI Builtin_QueryInterface(IDispatch *iface, REFIID riid, void
TRACE("(%p)->(IID_IDispatch %p)\n", This, ppv);
*ppv = &This->IDispatch_iface;
}else {
WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
if(!IsEqualGUID(riid, &IID_IDispatchEx))
WARN("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
*ppv = NULL;
return E_NOINTERFACE;
}