mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-28 14:30:48 +00:00
* pe-dll.c (fill_edata): Check that exported_symbol_sections is
not NULL.
This commit is contained in:
parent
85be1ca620
commit
f5a95868e4
@ -1,3 +1,8 @@
|
||||
2004-02-25 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* pe-dll.c (fill_edata): Check that exported_symbol_sections is
|
||||
not NULL.
|
||||
|
||||
2004-02-23 Ian Lance Taylor <ian@wasabisystems.com>
|
||||
|
||||
* ldlang.c (lang_check): Use %P, not %E, in error message.
|
||||
|
@ -966,9 +966,9 @@ fill_edata (bfd *abfd, struct bfd_link_info *info ATTRIBUTE_UNUSED)
|
||||
hint = 0;
|
||||
for (s = 0; s < NE; s++)
|
||||
{
|
||||
if (pe_def_file->exports[s].ordinal != -1)
|
||||
struct bfd_section *ssec = exported_symbol_sections[s];
|
||||
if (ssec && pe_def_file->exports[s].ordinal != -1)
|
||||
{
|
||||
struct bfd_section *ssec = exported_symbol_sections[s];
|
||||
unsigned long srva = (exported_symbol_offsets[s]
|
||||
+ ssec->output_section->vma
|
||||
+ ssec->output_offset);
|
||||
|
Loading…
Reference in New Issue
Block a user