Commit 63bf8635 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

msxml3: Remove returns after returns (Smatch).

That's the intent of commit 70edd9a7.
parent 1fe54842
......@@ -1206,7 +1206,6 @@ static HRESULT WINAPI domdoc_get_definition(
domdoc *This = impl_from_IXMLDOMDocument3( iface );
FIXME("(%p)->(%p)\n", This, definitionNode);
return E_NOTIMPL;
return IXMLDOMNode_get_definition( IXMLDOMNode_from_impl(&This->node), definitionNode );
}
......@@ -1293,7 +1292,6 @@ static HRESULT WINAPI domdoc_get_parsed(
FIXME("(%p)->(%p) stub!\n", This, isParsed);
*isParsed = VARIANT_TRUE;
return S_OK;
return IXMLDOMNode_get_parsed( IXMLDOMNode_from_impl(&This->node), isParsed );
}
......
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