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
e362ed8c
Commit
e362ed8c
authored
Sep 26, 2021
by
Eric Pouech
Committed by
Alexandre Julliard
Sep 27, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp/dwarf: Fix a couple of parent/child mismatch.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4b7355e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
dwarf.c
dlls/dbghelp/dwarf.c
+4
-4
No files found.
dlls/dbghelp/dwarf.c
View file @
e362ed8c
...
...
@@ -1688,7 +1688,7 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_debug_info_t* di,
switch
(
child
->
abbrev
->
tag
)
{
case
DW_TAG_array_type
:
dwarf2_parse_array_type
(
di
);
dwarf2_parse_array_type
(
child
);
break
;
case
DW_TAG_member
:
/* FIXME: should I follow the sibling stuff ?? */
...
...
@@ -1705,7 +1705,7 @@ static struct symt* dwarf2_parse_udt_type(dwarf2_debug_info_t* di,
dwarf2_parse_const_type
(
child
);
break
;
case
DW_TAG_volatile_type
:
dwarf2_parse_volatile_type
(
di
);
dwarf2_parse_volatile_type
(
child
);
break
;
case
DW_TAG_pointer_type
:
dwarf2_parse_pointer_type
(
child
);
...
...
@@ -2205,10 +2205,10 @@ static struct symt* dwarf2_parse_subprogram(dwarf2_debug_info_t* di)
dwarf2_parse_inlined_subroutine
(
&
subpgm
,
NULL
,
child
);
break
;
case
DW_TAG_pointer_type
:
dwarf2_parse_pointer_type
(
di
);
dwarf2_parse_pointer_type
(
child
);
break
;
case
DW_TAG_const_type
:
dwarf2_parse_const_type
(
di
);
dwarf2_parse_const_type
(
child
);
break
;
case
DW_TAG_subprogram
:
/* FIXME: likely a declaration (to be checked)
...
...
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