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
99f56bf7
Commit
99f56bf7
authored
Jul 26, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 26, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Recognize DW_FORM_flag_present.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
066330d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
dwarf.c
dlls/dbghelp/dwarf.c
+6
-0
No files found.
dlls/dbghelp/dwarf.c
View file @
99f56bf7
...
...
@@ -462,6 +462,7 @@ static void dwarf2_swallow_attribute(dwarf2_traverse_context_t* ctx,
switch
(
abbrev_attr
->
form
)
{
case
DW_FORM_flag_present
:
step
=
0
;
break
;
case
DW_FORM_ref_addr
:
case
DW_FORM_addr
:
step
=
ctx
->
word_size
;
break
;
case
DW_FORM_flag
:
...
...
@@ -509,6 +510,11 @@ static void dwarf2_fill_attr(const dwarf2_parse_context_t* ctx,
TRACE
(
"flag<0x%lx>
\n
"
,
attr
->
u
.
uvalue
);
break
;
case
DW_FORM_flag_present
:
attr
->
u
.
uvalue
=
1
;
TRACE
(
"flag_present
\n
"
);
break
;
case
DW_FORM_data1
:
attr
->
u
.
uvalue
=
dwarf2_get_byte
(
data
);
TRACE
(
"data1<%lu>
\n
"
,
attr
->
u
.
uvalue
);
...
...
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