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
599f3e87
Commit
599f3e87
authored
Jun 05, 2005
by
Mike Hearn
Committed by
Alexandre Julliard
Jun 05, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Don't return NULL for proxy details if there is no proxy.
- Remove stub message, it seems to be complete.
parent
e46047e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
8 deletions
+28
-8
internet.c
dlls/wininet/internet.c
+28
-8
No files found.
dlls/wininet/internet.c
View file @
599f3e87
...
...
@@ -1951,20 +1951,31 @@ static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD d
if
(
lpwai
->
lpszProxy
)
{
pPI
->
lpszProxy
=
(
LPWSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOW
));
sizeof
(
INTERNET_PROXY_INFOW
));
lstrcpyW
((
LPWSTR
)
pPI
->
lpszProxy
,
lpwai
->
lpszProxy
);
}
else
pPI
->
lpszProxy
=
NULL
;
{
pPI
->
lpszProxy
=
(
LPWSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOW
));
*
((
LPWSTR
)(
pPI
->
lpszProxy
))
=
0
;
}
if
(
lpwai
->
lpszProxyBypass
)
{
pPI
->
lpszProxyBypass
=
(
LPWSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOW
)
+
proxyBytesRequired
);
sizeof
(
INTERNET_PROXY_INFOW
)
+
proxyBytesRequired
);
lstrcpyW
((
LPWSTR
)
pPI
->
lpszProxyBypass
,
lpwai
->
lpszProxyBypass
);
}
else
pPI
->
lpszProxyBypass
=
NULL
;
{
pPI
->
lpszProxyBypass
=
(
LPWSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOW
)
+
proxyBytesRequired
);
*
((
LPWSTR
)(
pPI
->
lpszProxyBypass
))
=
0
;
}
bSuccess
=
TRUE
;
}
*
lpdwBufferLength
=
sizeof
(
INTERNET_PROXY_INFOW
)
+
...
...
@@ -1987,16 +1998,20 @@ static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD d
else
{
pPI
->
dwAccessType
=
lpwai
->
dwAccessType
;
FIXME
(
"INTERNET_OPTION_PROXY: Stub
\n
"
);
if
(
lpwai
->
lpszProxy
)
{
pPI
->
lpszProxy
=
(
LPSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOA
));
sizeof
(
INTERNET_PROXY_INFOA
));
WideCharToMultiByte
(
CP_ACP
,
0
,
lpwai
->
lpszProxy
,
-
1
,
(
LPSTR
)
pPI
->
lpszProxy
,
proxyBytesRequired
,
NULL
,
NULL
);
}
else
pPI
->
lpszProxy
=
NULL
;
{
pPI
->
lpszProxy
=
(
LPSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOA
));
*
((
LPSTR
)(
pPI
->
lpszProxy
))
=
'\0'
;
}
if
(
lpwai
->
lpszProxyBypass
)
{
pPI
->
lpszProxyBypass
=
(
LPSTR
)((
LPBYTE
)
lpBuffer
+
...
...
@@ -2007,7 +2022,12 @@ static BOOL INET_QueryOptionHelper(BOOL bIsUnicode, HINTERNET hInternet, DWORD d
NULL
,
NULL
);
}
else
pPI
->
lpszProxyBypass
=
NULL
;
{
pPI
->
lpszProxyBypass
=
(
LPSTR
)((
LPBYTE
)
lpBuffer
+
sizeof
(
INTERNET_PROXY_INFOA
)
+
proxyBytesRequired
);
*
((
LPSTR
)(
pPI
->
lpszProxyBypass
))
=
'\0'
;
}
bSuccess
=
TRUE
;
}
*
lpdwBufferLength
=
sizeof
(
INTERNET_PROXY_INFOA
)
+
...
...
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