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
5360780a
Commit
5360780a
authored
Feb 19, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Avoid signed-unsigned integer comparisons.
parent
2976b634
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
domdoc.c
dlls/msxml3/domdoc.c
+1
-1
factory.c
dlls/msxml3/factory.c
+1
-1
No files found.
dlls/msxml3/domdoc.c
View file @
5360780a
...
...
@@ -3245,7 +3245,7 @@ static HRESULT WINAPI ConnectionPoint_Advise(IConnectionPoint *iface, IUnknown *
ConnectionPoint
*
This
=
impl_from_IConnectionPoint
(
iface
);
IUnknown
*
sink
;
HRESULT
hr
;
int
i
;
DWORD
i
;
TRACE
(
"(%p)->(%p %p)
\n
"
,
This
,
unk_sink
,
cookie
);
...
...
dlls/msxml3/factory.c
View file @
5360780a
...
...
@@ -98,7 +98,7 @@ static const struct clsid_version_t clsid_versions_table[] =
static
MSXML_VERSION
get_msxml_version
(
const
GUID
*
clsid
)
{
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
sizeof
(
clsid_versions_table
)
/
sizeof
(
struct
clsid_version_t
);
i
++
)
if
(
IsEqualGUID
(
clsid
,
clsid_versions_table
[
i
].
clsid
))
...
...
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