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
9851ebf7
Commit
9851ebf7
authored
Mar 27, 2010
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Keep the .debug_frame section mapped when parsing dwarf debug_info…
dbghelp: Keep the .debug_frame section mapped when parsing dwarf debug_info (needed for CFA management).
parent
94973073
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
dwarf.c
dlls/dbghelp/dwarf.c
+5
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
9851ebf7
...
@@ -196,6 +196,8 @@ typedef struct dwarf2_parse_context_s
...
@@ -196,6 +196,8 @@ typedef struct dwarf2_parse_context_s
struct
dwarf2_module_info_s
struct
dwarf2_module_info_s
{
{
dwarf2_section_t
debug_loc
;
dwarf2_section_t
debug_loc
;
dwarf2_section_t
debug_frame
;
dwarf2_section_t
eh_frame
;
unsigned
char
word_size
;
unsigned
char
word_size
;
};
};
...
@@ -2346,6 +2348,7 @@ BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
...
@@ -2346,6 +2348,7 @@ BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
dwarf2_traverse_context_t
mod_ctx
;
dwarf2_traverse_context_t
mod_ctx
;
struct
image_section_map
debug_sect
,
debug_str_sect
,
debug_abbrev_sect
,
struct
image_section_map
debug_sect
,
debug_str_sect
,
debug_abbrev_sect
,
debug_line_sect
;
debug_line_sect
;
BOOL
ret
=
TRUE
;
BOOL
ret
=
TRUE
;
struct
module_format
*
dwarf2_modfmt
;
struct
module_format
*
dwarf2_modfmt
;
...
@@ -2396,6 +2399,8 @@ BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
...
@@ -2396,6 +2399,8 @@ BOOL dwarf2_parse(struct module* module, unsigned long load_offset,
dwarf2_modfmt
->
module
->
format_info
[
DFI_DWARF
]
=
dwarf2_modfmt
;
dwarf2_modfmt
->
module
->
format_info
[
DFI_DWARF
]
=
dwarf2_modfmt
;
dwarf2_init_section
(
&
dwarf2_modfmt
->
u
.
dwarf2_info
->
debug_loc
,
fmap
,
".debug_loc"
,
NULL
);
dwarf2_init_section
(
&
dwarf2_modfmt
->
u
.
dwarf2_info
->
debug_loc
,
fmap
,
".debug_loc"
,
NULL
);
dwarf2_init_section
(
&
dwarf2_modfmt
->
u
.
dwarf2_info
->
debug_frame
,
fmap
,
".debug_frame"
,
NULL
);
dwarf2_init_section
(
&
dwarf2_modfmt
->
u
.
dwarf2_info
->
eh_frame
,
fmap
,
".eh_frame"
,
NULL
);
while
(
mod_ctx
.
data
<
mod_ctx
.
end_data
)
while
(
mod_ctx
.
data
<
mod_ctx
.
end_data
)
{
{
...
...
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