PR ld/2659

* cofflink.c (_bfd_coff_link_input_bfd): Fix selection of aux entry when
  multiple definitions of a symbol are encountered.
This commit is contained in:
Nick Clifton 2006-07-05 10:21:39 +00:00
parent f48c3cdcaa
commit cfc9dfb123
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-07-05 Nick Clifton <nickc@redhat.com>
PR ld/2659
* cofflink.c (_bfd_coff_link_input_bfd): Fix selection of aux
entry when multiple definitions of a symbol are encountered.
2006-06-30 H.J. Lu <hongjiu.lu@intel.com>
* elf32-i386.c (elf_i386_relocate_section): Use xchg %ax,%ax

View File

@ -1921,6 +1921,7 @@ _bfd_coff_link_input_bfd (struct coff_final_link_info *finfo, bfd *input_bfd)
generate two symbols with the same name, but only one
will have aux entries. */
BFD_ASSERT (isymp->n_numaux == 0
|| h->numaux == 0
|| h->numaux == isymp->n_numaux);
}
@ -1936,7 +1937,7 @@ _bfd_coff_link_input_bfd (struct coff_final_link_info *finfo, bfd *input_bfd)
union internal_auxent aux;
union internal_auxent *auxp;
if (h != NULL)
if (h != NULL && h->aux != NULL && (h->numaux > i))
auxp = h->aux + i;
else
{