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
10e9e153
Commit
10e9e153
authored
Feb 23, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Feb 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledlg: Avoid signed-unsigned integer comparisons.
parent
d50189c1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
pastespl.c
dlls/oledlg/pastespl.c
+5
-3
No files found.
dlls/oledlg/pastespl.c
View file @
10e9e153
...
@@ -85,7 +85,9 @@ static void dump_ps_flags(DWORD flags)
...
@@ -85,7 +85,9 @@ static void dump_ps_flags(DWORD flags)
static
void
dump_pastespecial
(
const
OLEUIPASTESPECIALW
*
ps
)
static
void
dump_pastespecial
(
const
OLEUIPASTESPECIALW
*
ps
)
{
{
UINT
i
;
INT
i
;
UINT
j
;
dump_ps_flags
(
ps
->
dwFlags
);
dump_ps_flags
(
ps
->
dwFlags
);
TRACE
(
"hwnd %p caption %s hook %p custdata %lx
\n
"
,
TRACE
(
"hwnd %p caption %s hook %p custdata %lx
\n
"
,
ps
->
hWndOwner
,
debugstr_w
(
ps
->
lpszCaption
),
ps
->
lpfnHook
,
ps
->
lCustData
);
ps
->
hWndOwner
,
debugstr_w
(
ps
->
lpszCaption
),
ps
->
lpfnHook
,
ps
->
lCustData
);
...
@@ -110,8 +112,8 @@ static void dump_pastespecial(const OLEUIPASTESPECIALW *ps)
...
@@ -110,8 +112,8 @@ static void dump_pastespecial(const OLEUIPASTESPECIALW *ps)
}
}
for
(
i
=
0
;
i
<
ps
->
cLinkTypes
;
i
++
)
for
(
i
=
0
;
i
<
ps
->
cLinkTypes
;
i
++
)
TRACE
(
"arrLinkTypes[%d] %08x
\n
"
,
i
,
ps
->
arrLinkTypes
[
i
]);
TRACE
(
"arrLinkTypes[%d] %08x
\n
"
,
i
,
ps
->
arrLinkTypes
[
i
]);
for
(
i
=
0
;
i
<
ps
->
cClsidExclude
;
i
++
)
for
(
j
=
0
;
j
<
ps
->
cClsidExclude
;
j
++
)
TRACE
(
"lpClsidExclude[%
d] %s
\n
"
,
i
,
debugstr_guid
(
&
ps
->
lpClsidExclude
[
i
]));
TRACE
(
"lpClsidExclude[%
u] %s
\n
"
,
j
,
debugstr_guid
(
&
ps
->
lpClsidExclude
[
j
]));
}
}
...
...
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