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
586e8b0c
Commit
586e8b0c
authored
May 30, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
May 30, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Set INTERNET_ERROR_MASK_COMBINED_SEC_CERT flag for HTTP requests.
parent
cb9cc2cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
http.c
dlls/urlmon/http.c
+7
-2
No files found.
dlls/urlmon/http.c
View file @
586e8b0c
...
...
@@ -276,7 +276,7 @@ static HRESULT HttpProtocol_open_request(Protocol *prot, IUri *uri, DWORD reques
LPOLESTR
accept_mimes
[
257
];
const
WCHAR
**
accept_types
;
BYTE
security_id
[
512
];
DWORD
len
,
port
;
DWORD
len
,
port
,
flags
;
ULONG
num
,
error
;
BOOL
res
,
b
;
HRESULT
hres
;
...
...
@@ -419,10 +419,15 @@ static HRESULT HttpProtocol_open_request(Protocol *prot, IUri *uri, DWORD reques
}
}
flags
=
INTERNET_ERROR_MASK_COMBINED_SEC_CERT
;
res
=
InternetSetOptionW
(
This
->
base
.
request
,
INTERNET_OPTION_ERROR_MASK
,
&
flags
,
sizeof
(
flags
));
if
(
!
res
)
WARN
(
"InternetSetOption(INTERNET_OPTION_ERROR_MASK) failed: %u
\n
"
,
GetLastError
());
b
=
TRUE
;
res
=
InternetSetOptionW
(
This
->
base
.
request
,
INTERNET_OPTION_HTTP_DECODING
,
&
b
,
sizeof
(
b
));
if
(
!
res
)
WARN
(
"InternetSetOption(INTERNET_OPTION_HTTP_DECODING) failed: %
08x
\n
"
,
GetLastError
());
WARN
(
"InternetSetOption(INTERNET_OPTION_HTTP_DECODING) failed: %
u
\n
"
,
GetLastError
());
do
{
error
=
send_http_request
(
This
);
...
...
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