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
bc1a457b
Commit
bc1a457b
authored
Feb 26, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Avoid signed-unsigned integer comparisons.
parent
ec128b73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
uri.c
dlls/urlmon/uri.c
+3
-2
No files found.
dlls/urlmon/uri.c
View file @
bc1a457b
...
...
@@ -891,7 +891,7 @@ static BOOL ipv6_to_number(const ipv6_address *address, USHORT number[8]) {
/* Means we just passed the elision and need to add its values to
* 'number' before we do anything else.
*/
DWORD
j
=
0
;
INT
j
;
for
(
j
=
0
;
j
<
address
->
elision_size
;
j
+=
2
)
number
[
cur_component
++
]
=
0
;
...
...
@@ -904,7 +904,8 @@ static BOOL ipv6_to_number(const ipv6_address *address, USHORT number[8]) {
/* Case when the elision appears after the h16 components. */
if
(
!
already_passed_elision
&&
address
->
elision
)
{
for
(
i
=
0
;
i
<
address
->
elision_size
;
i
+=
2
)
INT
j
;
for
(
j
=
0
;
j
<
address
->
elision_size
;
j
+=
2
)
number
[
cur_component
++
]
=
0
;
}
...
...
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