aboutsummaryrefslogtreecommitdiff
path: root/bfd/elfxx-mips.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2008-08-17 20:39:34 +0000
committerNick Clifton <nickc@redhat.com>2008-08-17 20:39:34 +0000
commit3e08fb72d945d9b4279ca66093ac903cb1ca0aa2 (patch)
treee562f6a48602a516ed7535ed4557e1184147f66b /bfd/elfxx-mips.c
parent44feb3ce38dfc995ef492f2c319a6669efe39ff8 (diff)
downloadfsf-binutils-gdb-3e08fb72d945d9b4279ca66093ac903cb1ca0aa2.zip
fsf-binutils-gdb-3e08fb72d945d9b4279ca66093ac903cb1ca0aa2.tar.gz
fsf-binutils-gdb-3e08fb72d945d9b4279ca66093ac903cb1ca0aa2.tar.bz2
* elfxx-mips.c (_bfd_mips_elf_check_relocs): Handle the situation
where the sym_hashes are not available.
Diffstat (limited to 'bfd/elfxx-mips.c')
-rw-r--r--bfd/elfxx-mips.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/bfd/elfxx-mips.c b/bfd/elfxx-mips.c
index 80ce5b2..eb6d55e 100644
--- a/bfd/elfxx-mips.c
+++ b/bfd/elfxx-mips.c
@@ -7433,8 +7433,9 @@ _bfd_mips_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
else
{
h = sym_hashes[r_symndx - extsymoff];
- while (h->root.type == bfd_link_hash_indirect
- || h->root.type == bfd_link_hash_warning)
+ while (h != NULL
+ && (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;
}