[PATCH] webservices: Fix misplaced parenthesis.
28 May
2019
28 May
'19
3:37 p.m.
Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> --- dlls/webservices/reader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/webservices/reader.c b/dlls/webservices/reader.c index 53448c1926..b08eb87ed8 100644 --- a/dlls/webservices/reader.c +++ b/dlls/webservices/reader.c @@ -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; -- 2.21.0
2392
Age (days ago)
2393
Last active (days ago)
1 comments
2 participants
participants (2)
-
Andrey Gusev -
Hans Leidekker