winhttp: Remove redundant parentheses.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hans Leidekker 2021-06-08 16:27:43 +02:00 committed by Alexandre Julliard
parent d66e834bfd
commit ed9c1fb1b9
1 changed files with 1 additions and 1 deletions

View File

@ -1787,7 +1787,7 @@ static char *download_script( const WCHAR *url, DWORD *out_size )
if (!(req = WinHttpOpenRequest( con, NULL, uc.lpszUrlPath, NULL, NULL, acceptW, flags ))) goto done;
if (!WinHttpSendRequest( req, NULL, 0, NULL, 0, 0, 0 )) goto done;
if (!(WinHttpReceiveResponse( req, 0 ))) goto done;
if (!WinHttpReceiveResponse( req, 0 )) goto done;
if (!WinHttpQueryHeaders( req, WINHTTP_QUERY_STATUS_CODE|WINHTTP_QUERY_FLAG_NUMBER, NULL, &status,
&size, NULL ) || status != HTTP_STATUS_OK) goto done;