msxml3: Remove returns after returns (Smatch).

That's the intent of commit 70edd9a7.
This commit is contained in:
Michael Stefaniuc 2010-10-25 23:50:45 +02:00 committed by Alexandre Julliard
parent 1fe54842e0
commit 63bf86357e
1 changed files with 0 additions and 2 deletions

View File

@ -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 );
}