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
7d60dd7e
Commit
7d60dd7e
authored
Jul 05, 2011
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Jul 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Silence a compiler warning (GCC 4.6).
parent
9d3cc8b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
uri.c
dlls/urlmon/uri.c
+2
-1
No files found.
dlls/urlmon/uri.c
View file @
7d60dd7e
...
...
@@ -3785,6 +3785,7 @@ static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD
static
const
WCHAR
nullW
[]
=
{
0
};
ptr
=
nullW
;
check_len
=
FALSE
;
expected_len
=
-
1
;
}
component
=
ptr
;
...
...
@@ -3798,7 +3799,7 @@ static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD
if
(
!
valid
||
(
check_len
&&
expected_len
!=
data
->
path_len
))
{
TRACE
(
"(%p %p %x): Invalid path component %s.
\n
"
,
builder
,
data
,
flags
,
debugstr_wn
(
component
,
check_len
?
expected_len
:
-
1
)
);
debugstr_wn
(
component
,
expected_len
)
);
return
INET_E_INVALID_URL
;
}
...
...
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