Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
776e75e4
Commit
776e75e4
authored
Dec 14, 2009
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 15, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix symt_find_nearest so that it searches for 64bit addresses on 64bit platforms.
parent
4195c2f3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
dbghelp_private.h
dlls/dbghelp/dbghelp_private.h
+1
-1
symbol.c
dlls/dbghelp/symbol.c
+1
-1
No files found.
dlls/dbghelp/dbghelp_private.h
View file @
776e75e4
...
@@ -538,7 +538,7 @@ extern struct module* symt_cmp_addr_module;
...
@@ -538,7 +538,7 @@ extern struct module* symt_cmp_addr_module;
extern
int
symt_cmp_addr
(
const
void
*
p1
,
const
void
*
p2
);
extern
int
symt_cmp_addr
(
const
void
*
p1
,
const
void
*
p2
);
extern
void
copy_symbolW
(
SYMBOL_INFOW
*
siw
,
const
SYMBOL_INFO
*
si
);
extern
void
copy_symbolW
(
SYMBOL_INFOW
*
siw
,
const
SYMBOL_INFO
*
si
);
extern
struct
symt_ht
*
extern
struct
symt_ht
*
symt_find_nearest
(
struct
module
*
module
,
DWORD
addr
);
symt_find_nearest
(
struct
module
*
module
,
DWORD
_PTR
addr
);
extern
struct
symt_compiland
*
extern
struct
symt_compiland
*
symt_new_compiland
(
struct
module
*
module
,
unsigned
long
address
,
symt_new_compiland
(
struct
module
*
module
,
unsigned
long
address
,
unsigned
src_idx
);
unsigned
src_idx
);
...
...
dlls/dbghelp/symbol.c
View file @
776e75e4
...
@@ -900,7 +900,7 @@ static void symt_get_length(struct module* module, const struct symt* symt, ULON
...
@@ -900,7 +900,7 @@ static void symt_get_length(struct module* module, const struct symt* symt, ULON
}
}
/* assume addr is in module */
/* assume addr is in module */
struct
symt_ht
*
symt_find_nearest
(
struct
module
*
module
,
DWORD
addr
)
struct
symt_ht
*
symt_find_nearest
(
struct
module
*
module
,
DWORD
_PTR
addr
)
{
{
int
mid
,
high
,
low
;
int
mid
,
high
,
low
;
ULONG64
ref_addr
,
ref_size
;
ULONG64
ref_addr
,
ref_size
;
...
...
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