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
09ee8233
Commit
09ee8233
authored
Jul 21, 2009
by
Juan Lang
Committed by
Alexandre Julliard
Jul 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Check environment if the registry settings are present but bogus.
parent
68fdc5cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
session.c
dlls/winhttp/session.c
+3
-2
No files found.
dlls/winhttp/session.c
View file @
09ee8233
...
...
@@ -851,7 +851,7 @@ BOOL WINAPI WinHttpGetDefaultProxyConfiguration( WINHTTP_PROXY_INFO *info )
{
LONG
l
;
HKEY
key
;
BOOL
direct
=
TRUE
;
BOOL
got_from_reg
=
FALSE
,
direct
=
TRUE
;
char
*
envproxy
;
TRACE
(
"%p
\n
"
,
info
);
...
...
@@ -913,6 +913,7 @@ BOOL WINAPI WinHttpGetDefaultProxyConfiguration( WINHTTP_PROXY_INFO *info )
}
if
(
sane
)
{
got_from_reg
=
TRUE
;
direct
=
FALSE
;
info
->
dwAccessType
=
WINHTTP_ACCESS_TYPE_NAMED_PROXY
;
...
...
@@ -927,7 +928,7 @@ BOOL WINAPI WinHttpGetDefaultProxyConfiguration( WINHTTP_PROXY_INFO *info )
}
RegCloseKey
(
key
);
}
else
if
(
(
envproxy
=
getenv
(
"http_proxy"
)))
if
(
!
got_from_reg
&&
(
envproxy
=
getenv
(
"http_proxy"
)))
{
char
*
colon
,
*
http_proxy
;
...
...
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