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
4e7fe582
Commit
4e7fe582
authored
Apr 24, 2010
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Apr 26, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedump: Remove variable strtable which is not really used from dump_symbol_table.
parent
b52eef95
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
pe.c
tools/winedump/pe.c
+0
-3
No files found.
tools/winedump/pe.c
View file @
4e7fe582
...
@@ -1420,7 +1420,6 @@ static void dump_symbol_table(void)
...
@@ -1420,7 +1420,6 @@ static void dump_symbol_table(void)
{
{
const
IMAGE_SYMBOL
*
sym
;
const
IMAGE_SYMBOL
*
sym
;
int
numsym
;
int
numsym
;
const
char
*
strtable
;
numsym
=
PE_nt_headers
->
FileHeader
.
NumberOfSymbols
;
numsym
=
PE_nt_headers
->
FileHeader
.
NumberOfSymbols
;
if
(
!
PE_nt_headers
->
FileHeader
.
PointerToSymbolTable
||
!
numsym
)
if
(
!
PE_nt_headers
->
FileHeader
.
PointerToSymbolTable
||
!
numsym
)
...
@@ -1428,8 +1427,6 @@ static void dump_symbol_table(void)
...
@@ -1428,8 +1427,6 @@ static void dump_symbol_table(void)
sym
=
PRD
(
PE_nt_headers
->
FileHeader
.
PointerToSymbolTable
,
sym
=
PRD
(
PE_nt_headers
->
FileHeader
.
PointerToSymbolTable
,
sizeof
(
*
sym
)
*
numsym
);
sizeof
(
*
sym
)
*
numsym
);
if
(
!
sym
)
return
;
if
(
!
sym
)
return
;
/* FIXME: no way to get strtable size */
strtable
=
(
const
char
*
)
&
sym
[
numsym
];
dump_coff_symbol_table
(
sym
,
numsym
,
IMAGE_FIRST_SECTION
(
PE_nt_headers
));
dump_coff_symbol_table
(
sym
,
numsym
,
IMAGE_FIRST_SECTION
(
PE_nt_headers
));
}
}
...
...
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