Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ed9c1fb1
Commit
ed9c1fb1
authored
Jun 08, 2021
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 08, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Remove redundant parentheses.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d66e834b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
session.c
dlls/winhttp/session.c
+1
-1
No files found.
dlls/winhttp/session.c
View file @
ed9c1fb1
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment