Commit d2841203 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

webservices: Fix misplaced parenthesis.

parent 023ad350
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment