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>
This commit is contained in:
parent
5632c82c42
commit
131397e784
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue