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
2e34ea4e
Commit
2e34ea4e
authored
Jan 14, 2007
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Removed unneeded code from rewrite of .gnu_link handling.
parent
817265a7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
elf_module.c
dlls/dbghelp/elf_module.c
+4
-5
No files found.
dlls/dbghelp/elf_module.c
View file @
2e34ea4e
...
...
@@ -800,7 +800,7 @@ static BOOL elf_debuglink_parse (struct module* module,
* 2/ padding on 4 byte boundary
* 3/ CRC of the linked ELF file
*/
BOOL
ret
=
FALSE
,
lret
;
BOOL
ret
=
FALSE
;
const
char
*
dbg_link
=
(
char
*
)
debuglink
;
struct
elf_file_map
fmap_link
;
...
...
@@ -808,13 +808,12 @@ static BOOL elf_debuglink_parse (struct module* module,
{
fmap_link
.
crc
=
*
(
const
DWORD
*
)(
dbg_link
+
((
DWORD_PTR
)(
strlen
(
dbg_link
)
+
4
)
&
~
3
));
fmap_link
.
with_crc
=
1
;
l
ret
=
elf_load_debug_info_from_map
(
module
,
&
fmap_link
,
pool
,
ht_symtab
);
if
(
l
ret
)
ret
=
elf_load_debug_info_from_map
(
module
,
&
fmap_link
,
pool
,
ht_symtab
);
if
(
ret
)
strcpy
(
module
->
module
.
LoadedPdbName
,
dbg_link
);
else
WARN
(
"Couldn't load debug information from %s
\n
"
,
dbg_link
);
ret
=
ret
||
lret
;
elf_unmap_file
(
&
fmap_link
);
}
else
...
...
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