webservices: Fix misplaced parenthesis.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Gusev 2017-10-11 16:40:11 +03:00 committed by Alexandre Julliard
parent 5632c82c42
commit 131397e784
1 changed files with 1 additions and 1 deletions

View File

@ -3061,7 +3061,7 @@ static HRESULT skip_node( struct reader *reader )
for (;;)
{
if ((hr = read_node( reader ) != S_OK) || !parent) break;
if ((hr = read_node( reader )) != S_OK || !parent) break;
if (node_type( reader->current ) != WS_XML_NODE_TYPE_END_ELEMENT) continue;
if (reader->current->parent == parent) return read_node( reader );
}