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
34a961d3
Commit
34a961d3
authored
Dec 15, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Dec 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix compilation on OSX.
parent
09246aa1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
macho_module.c
dlls/dbghelp/macho_module.c
+3
-3
No files found.
dlls/dbghelp/macho_module.c
View file @
34a961d3
...
...
@@ -777,7 +777,7 @@ static void macho_finish_stabs(struct module* module, struct hash_table* ht_symt
sym
=
symt_find_nearest
(
module
,
ste
->
addr
);
if
(
sym
)
symt_get_info
(
&
sym
->
symt
,
TI_GET_ADDRESS
,
&
addr
);
symt_get_info
(
module
,
&
sym
->
symt
,
TI_GET_ADDRESS
,
&
addr
);
if
(
sym
&&
ste
->
addr
==
addr
)
{
ULONG64
size
=
0
;
...
...
@@ -791,8 +791,8 @@ static void macho_finish_stabs(struct module* module, struct hash_table* ht_symt
* Also, we check that we don't have two symbols, one local, the other
* global, which is legal.
*/
symt_get_info
(
&
sym
->
symt
,
TI_GET_LENGTH
,
&
size
);
symt_get_info
(
&
sym
->
symt
,
TI_GET_DATAKIND
,
&
kind
);
symt_get_info
(
module
,
&
sym
->
symt
,
TI_GET_LENGTH
,
&
size
);
symt_get_info
(
module
,
&
sym
->
symt
,
TI_GET_DATAKIND
,
&
kind
);
if
(
size
&&
kind
==
(
ste
->
is_global
?
DataIsGlobal
:
DataIsFileStatic
))
FIXME
(
"Duplicate in %s: %s<%08lx> %s<%s-%s>
\n
"
,
debugstr_w
(
module
->
module
.
ModuleName
),
...
...
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