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
c9563e10
Commit
c9563e10
authored
Sep 24, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
Sep 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Sign-compare warnings fix.
parent
34ac3f15
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
minidump.c
dlls/dbghelp/minidump.c
+2
-2
msc.c
dlls/dbghelp/msc.c
+2
-2
source.c
dlls/dbghelp/source.c
+1
-1
stabs.c
dlls/dbghelp/stabs.c
+1
-1
stack.c
dlls/dbghelp/stack.c
+1
-1
symbol.c
dlls/dbghelp/symbol.c
+1
-1
type.c
dlls/dbghelp/type.c
+2
-2
No files found.
dlls/dbghelp/minidump.c
View file @
c9563e10
...
...
@@ -411,7 +411,7 @@ static unsigned dump_exception_info(struct dump_context* dc,
MINIDUMP_EXCEPTION_STREAM
mdExcpt
;
EXCEPTION_RECORD
rec
,
*
prec
;
CONTEXT
ctx
,
*
pctx
;
int
i
;
DWORD
i
;
mdExcpt
.
ThreadId
=
except
->
ThreadId
;
mdExcpt
.
__alignment
=
0
;
...
...
@@ -907,7 +907,7 @@ BOOL WINAPI MiniDumpReadDumpStream(PVOID base, ULONG str_idx,
if
(
mdHead
->
Signature
==
MINIDUMP_SIGNATURE
)
{
MINIDUMP_DIRECTORY
*
dir
;
int
i
;
DWORD
i
;
dir
=
(
MINIDUMP_DIRECTORY
*
)((
char
*
)
base
+
mdHead
->
StreamDirectoryRva
);
for
(
i
=
0
;
i
<
mdHead
->
NumberOfStreams
;
i
++
,
dir
++
)
...
...
dlls/dbghelp/msc.c
View file @
c9563e10
...
...
@@ -68,7 +68,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(dbghelp_msc);
static
void
dump
(
const
void
*
ptr
,
unsigned
len
)
{
int
i
,
j
;
unsigned
int
i
,
j
;
char
msg
[
128
];
const
char
*
hexof
=
"0123456789abcdef"
;
const
BYTE
*
x
=
(
const
BYTE
*
)
ptr
;
...
...
@@ -829,7 +829,7 @@ static void codeview_add_func_signature_args(struct codeview_type_parse* ctp,
sym
->
rettype
=
codeview_fetch_type
(
ctp
,
ret_type
,
FALSE
);
if
(
args_list
&&
(
reftype
=
codeview_jump_to_type
(
ctp
,
args_list
)))
{
int
i
;
unsigned
int
i
;
switch
(
reftype
->
generic
.
id
)
{
case
LF_ARGLIST_V1
:
...
...
dlls/dbghelp/source.c
View file @
c9563e10
...
...
@@ -235,7 +235,7 @@ BOOL WINAPI SymEnumLines(HANDLE hProcess, ULONG64 base, PCSTR compiland,
hash_table_iter_init
(
&
pair
.
effective
->
ht_symbols
,
&
hti
,
NULL
);
while
((
ptr
=
hash_table_iter_up
(
&
hti
)))
{
int
i
;
unsigned
int
i
;
sym
=
GET_ENTRY
(
ptr
,
struct
symt_ht
,
hash_elt
);
if
(
sym
->
symt
.
tag
!=
SymTagFunction
)
continue
;
...
...
dlls/dbghelp/stabs.c
View file @
c9563e10
...
...
@@ -1131,7 +1131,7 @@ static inline void pending_add(struct pending_block* pending, const char* name,
static
void
pending_flush
(
struct
pending_block
*
pending
,
struct
module
*
module
,
struct
symt_function
*
func
,
struct
symt_block
*
block
)
{
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
pending
->
num
;
i
++
)
{
...
...
dlls/dbghelp/stack.c
View file @
c9563e10
...
...
@@ -386,7 +386,7 @@ static BOOL stack_walk(struct stack_walk_callback* cb, LPSTACKFRAME frame)
if
(
curr_mode
==
stm_16bit
)
{
int
i
;
unsigned
int
i
;
p
=
sw_xlat_addr
(
cb
,
&
frame
->
AddrFrame
);
if
(
!
sw_read_mem
(
cb
,
p
+
sizeof
(
WORD
),
&
val
,
sizeof
(
WORD
)))
...
...
dlls/dbghelp/symbol.c
View file @
c9563e10
...
...
@@ -795,7 +795,7 @@ static BOOL symt_enum_locals_helper(struct module_pair* pair,
{
struct
symt
*
lsym
=
NULL
;
DWORD
pc
=
pair
->
pcs
->
ctx_frame
.
InstructionOffset
;
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
vector_length
(
v
);
i
++
)
{
...
...
dlls/dbghelp/type.c
View file @
c9563e10
...
...
@@ -218,7 +218,7 @@ BOOL symt_add_udt_element(struct module* module, struct symt_udt* udt_type,
TRACE_
(
dbghelp_symt
)(
"Adding %s to UDT %s
\n
"
,
name
,
udt_type
->
hash_elt
.
name
);
if
(
name
)
{
int
i
;
unsigned
int
i
;
for
(
i
=
0
;
i
<
vector_length
(
&
udt_type
->
vchildren
);
i
++
)
{
m
=
*
(
struct
symt_data
**
)
vector_at
(
&
udt_type
->
vchildren
,
i
);
...
...
@@ -384,7 +384,7 @@ BOOL WINAPI SymEnumTypes(HANDLE hProcess, ULONG64 BaseOfDll,
const
char
*
tmp
;
struct
symt
*
type
;
DWORD64
size
;
int
i
;
unsigned
int
i
;
TRACE
(
"(%p %s %p %p)
\n
"
,
hProcess
,
wine_dbgstr_longlong
(
BaseOfDll
),
EnumSymbolsCallback
,
...
...
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