Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
647abcaf
Commit
647abcaf
authored
Dec 09, 2014
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 09, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Convert the async parameter to VT_BOOL if necessary in IWinHttpRequest::Open.
parent
4ac817b6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
request.c
dlls/winhttp/request.c
+1
-1
winhttp.c
dlls/winhttp/tests/winhttp.c
+17
-0
No files found.
dlls/winhttp/request.c
View file @
647abcaf
...
...
@@ -2993,7 +2993,7 @@ static HRESULT WINAPI winhttp_request_Open(
path
[
uc
.
dwUrlPathLength
+
uc
.
dwExtraInfoLength
]
=
0
;
if
(
!
(
verb
=
strdupW
(
method
)))
goto
error
;
if
(
V_VT
(
&
async
)
==
VT_BOOL
&&
V_BOOL
(
&
async
))
flags
|=
WINHTTP_FLAG_ASYNC
;
if
(
SUCCEEDED
(
VariantChangeType
(
&
async
,
&
async
,
0
,
VT_BOOL
))
&&
V_BOOL
(
&
async
))
flags
|=
WINHTTP_FLAG_ASYNC
;
if
(
!
(
hsession
=
WinHttpOpen
(
user_agentW
,
WINHTTP_ACCESS_TYPE_DEFAULT_PROXY
,
NULL
,
NULL
,
flags
)))
{
err
=
get_last_error
();
...
...
dlls/winhttp/tests/winhttp.c
View file @
647abcaf
...
...
@@ -2870,6 +2870,23 @@ static void test_IWinHttpRequest(void)
hr
=
IWinHttpRequest_Release
(
req
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hr
=
CoCreateInstance
(
&
CLSID_WinHttpRequest
,
NULL
,
CLSCTX_INPROC_SERVER
,
&
IID_IWinHttpRequest
,
(
void
**
)
&
req
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
V_VT
(
&
async
)
=
VT_I4
;
V_I4
(
&
async
)
=
1
;
hr
=
IWinHttpRequest_Open
(
req
,
method
,
url
,
async
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hr
=
IWinHttpRequest_Send
(
req
,
empty
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hr
=
IWinHttpRequest_WaitForResponse
(
req
,
timeout
,
&
succeeded
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
hr
=
IWinHttpRequest_Release
(
req
);
ok
(
hr
==
S_OK
,
"got %08x
\n
"
,
hr
);
SysFreeString
(
method
);
SysFreeString
(
url
);
SysFreeString
(
username
);
...
...
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