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
ddf922d7
Commit
ddf922d7
authored
Jan 14, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 15, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Avoid signed-unsigned integer comparisons.
parent
6eecf488
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
elf_module.c
dlls/dbghelp/elf_module.c
+1
-1
msc.c
dlls/dbghelp/msc.c
+2
-1
No files found.
dlls/dbghelp/elf_module.c
View file @
ddf922d7
...
...
@@ -273,7 +273,7 @@ static BOOL elf_map_file(struct elf_map_file_data* emfd, struct image_file_map*
{
static
const
BYTE
elf_signature
[
4
]
=
{
ELFMAG0
,
ELFMAG1
,
ELFMAG2
,
ELFMAG3
};
struct
stat
statbuf
;
int
i
;
unsigned
int
i
;
Elf_Phdr
phdr
;
size_t
tmp
,
page_mask
=
sysconf
(
_SC_PAGESIZE
)
-
1
;
char
*
filename
;
...
...
dlls/dbghelp/msc.c
View file @
ddf922d7
...
...
@@ -1370,7 +1370,8 @@ static void codeview_snarf_linetab(const struct msc_debug_info* msc_dbg, const B
{
const
BYTE
*
ptr
=
linetab
;
int
nfile
,
nseg
;
int
i
,
j
,
k
;
int
i
,
j
;
unsigned
int
k
;
const
unsigned
int
*
filetab
;
const
unsigned
int
*
lt_ptr
;
const
unsigned
short
*
linenos
;
...
...
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