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
6abf5fff
Commit
6abf5fff
authored
Apr 18, 2011
by
Austin English
Committed by
Alexandre Julliard
Apr 19, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Get rid of a couple unused variables.
parent
e0d14005
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
dwarf.c
dlls/dbghelp/dwarf.c
+3
-3
No files found.
dlls/dbghelp/dwarf.c
View file @
6abf5fff
...
...
@@ -2121,7 +2121,7 @@ static BOOL dwarf2_parse_line_numbers(const dwarf2_section_t* sections,
{
dwarf2_traverse_context_t
traverse
;
unsigned
long
length
;
unsigned
version
,
header_len
,
insn_size
,
default_stmt
;
unsigned
insn_size
,
default_stmt
;
unsigned
line_range
,
opcode_base
;
int
line_base
;
const
unsigned
char
*
opcode_len
;
...
...
@@ -2150,8 +2150,8 @@ static BOOL dwarf2_parse_line_numbers(const dwarf2_section_t* sections,
WARN
(
"out of bounds header
\n
"
);
return
FALSE
;
}
version
=
dwarf2_parse_u2
(
&
traverse
);
header_len
=
dwarf2_parse_u4
(
&
traverse
);
dwarf2_parse_u2
(
&
traverse
);
/* version */
dwarf2_parse_u4
(
&
traverse
);
/* header_len */
insn_size
=
dwarf2_parse_byte
(
&
traverse
);
default_stmt
=
dwarf2_parse_byte
(
&
traverse
);
line_base
=
(
signed
char
)
dwarf2_parse_byte
(
&
traverse
);
...
...
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