diff options
author | Alan Modra <amodra@gmail.com> | 2001-11-07 04:07:09 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-11-07 04:07:09 +0000 |
commit | 1d761fc5938e2c3b1b02dd7e3d6fc9ba2465f101 (patch) | |
tree | da94135d591587ac5437e00720ff4dc56aff69c0 /bfd/elflink.h | |
parent | 1262e67cc37a50b8bb333991abbb0dc82469df3a (diff) | |
download | gdb-1d761fc5938e2c3b1b02dd7e3d6fc9ba2465f101.zip gdb-1d761fc5938e2c3b1b02dd7e3d6fc9ba2465f101.tar.gz gdb-1d761fc5938e2c3b1b02dd7e3d6fc9ba2465f101.tar.bz2 |
* elflink.h (elf_link_input_bfd <removed linkonce relocs>): Fix
bad symtab segfault. Formatting and warning fixes. Improve
error message for internationalisation.
Diffstat (limited to 'bfd/elflink.h')
-rw-r--r-- | bfd/elflink.h | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/bfd/elflink.h b/bfd/elflink.h index 0e2bd43..bc85175 100644 --- a/bfd/elflink.h +++ b/bfd/elflink.h @@ -6123,9 +6123,9 @@ elf_link_input_bfd (finfo, input_bfd) Elf_Internal_Rela *rel, *relend; /* Run through the relocs looking for any against symbols from discarded sections and section symbols from - removed link-once sections. Complain about relocs - against discarded sections. Zero relocs against removed - link-once sections. We should really complain if + removed link-once sections. Complain about relocs + against discarded sections. Zero relocs against removed + link-once sections. We should really complain if anything in the final link tries to use it, but DWARF-based exception handling might have an entry in .eh_frame to describe a routine in the linkonce section, @@ -6143,16 +6143,18 @@ elf_link_input_bfd (finfo, input_bfd) { struct elf_link_hash_entry *h; - h = sym_hashes[r_symndx - symtab_hdr->sh_info]; + h = sym_hashes[r_symndx - extsymoff]; while (h->root.type == bfd_link_hash_indirect || h->root.type == bfd_link_hash_warning) h = (struct elf_link_hash_entry *) h->root.u.i.link; + /* Complain if the definition comes from a discarded section. */ if ((h->root.type == bfd_link_hash_defined || h->root.type == bfd_link_hash_defweak) && ! bfd_is_abs_section (h->root.u.def.section) - && bfd_is_abs_section (h->root.u.def.section->output_section)) + && bfd_is_abs_section (h->root.u.def.section + ->output_section)) { #if BFD_VERSION_DATE < 20031005 if ((o->flags & SEC_DEBUGGING) != 0) @@ -6194,7 +6196,7 @@ elf_link_input_bfd (finfo, input_bfd) #if BFD_VERSION_DATE > 20021005 (*finfo->info->callbacks->warning) (finfo->info, - _("warning: relocation against removed section; zeroing"), + _("warning: relocation against removed section"), NULL, input_bfd, o, rel->r_offset); #endif memset (rel, 0, sizeof (*rel)); @@ -6203,21 +6205,21 @@ elf_link_input_bfd (finfo, input_bfd) #endif { boolean ok; - const char *msg = - _("local symbols in discarded section"); - char *buf - = (char *) bfd_malloc - (strlen (sec->name) + 3 - + strlen (msg)); + const char *msg + = _("local symbols in discarded section %s"); + bfd_size_type amt + = strlen (sec->name) + strlen (msg) - 1; + char *buf = (char *) bfd_malloc (amt); + if (buf != NULL) - sprintf (buf, "%s: %s", msg, - sec->name); + sprintf (buf, msg, sec->name); else buf = (char *) sec->name; - ok = (*finfo->info->callbacks->undefined_symbol) - (finfo->info, buf, - input_bfd, o, rel->r_offset, - true); + ok = (*finfo->info->callbacks + ->undefined_symbol) (finfo->info, buf, + input_bfd, o, + rel->r_offset, + true); if (buf != sec->name) free (buf); if (!ok) |