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
43f62c99
Commit
43f62c99
authored
Feb 13, 2012
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Fix a couple of traces in dwarf line info parsing.
parent
90207b1d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
dwarf.c
dlls/dbghelp/dwarf.c
+7
-3
No files found.
dlls/dbghelp/dwarf.c
View file @
43f62c99
...
...
@@ -2270,15 +2270,19 @@ static BOOL dwarf2_parse_line_numbers(const dwarf2_section_t* sections,
address
=
ctx
->
load_offset
+
dwarf2_parse_addr
(
&
traverse
);
break
;
case
DW_LNE_define_file
:
FIXME
(
"not handled %s
\n
"
,
traverse
.
data
);
FIXME
(
"not handled
define file
%s
\n
"
,
traverse
.
data
);
traverse
.
data
+=
strlen
((
const
char
*
)
traverse
.
data
)
+
1
;
dwarf2_leb128_as_unsigned
(
&
traverse
);
dwarf2_leb128_as_unsigned
(
&
traverse
);
dwarf2_leb128_as_unsigned
(
&
traverse
);
break
;
case
DW_LNE_set_discriminator
:
WARN
(
"not handled %s
\n
"
,
traverse
.
data
);
dwarf2_leb128_as_unsigned
(
&
traverse
);
{
unsigned
descr
;
descr
=
dwarf2_leb128_as_unsigned
(
&
traverse
);
WARN
(
"not handled discriminator %x
\n
"
,
descr
);
}
break
;
default:
FIXME
(
"Unsupported extended opcode %x
\n
"
,
extopcode
);
...
...
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