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
d742f6e8
Commit
d742f6e8
authored
Feb 14, 2015
by
Thomas Faber
Committed by
Alexandre Julliard
Feb 17, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Avoid empty initializer braces.
parent
5408c5ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
internet.c
dlls/wininet/internet.c
+4
-3
No files found.
dlls/wininet/internet.c
View file @
d742f6e8
...
...
@@ -522,11 +522,12 @@ static void free_global_proxy( void )
static
BOOL
parse_proxy_url
(
proxyinfo_t
*
info
,
const
WCHAR
*
url
)
{
static
const
WCHAR
fmt
[]
=
{
'%'
,
's'
,
':'
,
'%'
,
'u'
,
0
};
WCHAR
hostname
[
INTERNET_MAX_HOST_NAME_LENGTH
]
=
{}
;
WCHAR
username
[
INTERNET_MAX_USER_NAME_LENGTH
]
=
{}
;
WCHAR
password
[
INTERNET_MAX_PASSWORD_LENGTH
]
=
{}
;
WCHAR
hostname
[
INTERNET_MAX_HOST_NAME_LENGTH
];
WCHAR
username
[
INTERNET_MAX_USER_NAME_LENGTH
];
WCHAR
password
[
INTERNET_MAX_PASSWORD_LENGTH
];
URL_COMPONENTSW
uc
;
hostname
[
0
]
=
username
[
0
]
=
password
[
0
]
=
0
;
memset
(
&
uc
,
0
,
sizeof
(
uc
)
);
uc
.
dwStructSize
=
sizeof
(
uc
);
uc
.
lpszHostName
=
hostname
;
...
...
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