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>
stable
Andrey Gusev 2019-05-28 18:37:20 +03:00 committed by Alexandre Julliard
parent 023ad350e2
commit d28412030a
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ static HRESULT read_xmldecl( struct reader *reader )
HRESULT hr;
if ((hr = read_more_data( reader, 1, NULL, NULL )) != S_OK) return hr;
if (*read_current_ptr( reader ) != '<' || (hr = read_cmp( reader, "<?", 2 ) != S_OK))
if (*read_current_ptr( reader ) != '<' || (hr = read_cmp( reader, "<?", 2 )) != S_OK)
{
reader->state = READER_STATE_BOF;
return S_OK;