webservices: Call WsReadEndElement just once in WsReadEnvelopeEnd.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2018-11-27 14:13:07 +01:00 committed by Alexandre Julliard
parent a0f00bd6d7
commit 0ac9f9d470

View file

@ -938,13 +938,6 @@ HRESULT WINAPI WsReadEnvelopeStart( WS_MESSAGE *handle, WS_XML_READER *reader, W
return hr;
}
static HRESULT read_envelope_end( WS_XML_READER *reader )
{
HRESULT hr;
if ((hr = WsReadEndElement( reader, NULL )) != S_OK) return hr; /* </s:Body> */
return WsReadEndElement( reader, NULL ); /* </s:Envelope> */
}
/**************************************************************************
* WsReadEnvelopeEnd [webservices.@]
*/
@ -967,7 +960,7 @@ HRESULT WINAPI WsReadEnvelopeEnd( WS_MESSAGE *handle, WS_ERROR *error )
}
if (msg->state != WS_MESSAGE_STATE_READING) hr = WS_E_INVALID_OPERATION;
else if ((hr = read_envelope_end( msg->reader_body )) == S_OK)
else if ((hr = WsReadEndElement( msg->reader_body, NULL )) == S_OK)
msg->state = WS_MESSAGE_STATE_DONE;
LeaveCriticalSection( &msg->cs );