Commit bc9850b4 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Fixed HTMLHeadElement_QI implementation.

parent 7a428c3f
......@@ -295,7 +295,7 @@ static HRESULT HTMLHeadElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
TRACE("(%p)->(IID_IHTMLHeadElement %p)\n", This, ppv);
*ppv = &This->IHTMLHeadElement_iface;
}else {
HTMLElement_QI(&This->element.node, riid, ppv);
return HTMLElement_QI(&This->element.node, riid, ppv);
}
IUnknown_AddRef((IUnknown*)*ppv);
......
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