diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-06-20 00:43:21 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-06-20 00:43:21 +0000 |
commit | 09a24cbf399cbb184c7121403d394e3db416ae71 (patch) | |
tree | 555f0d52afa070183ba22f6a688444cbbfd5c33d /bfd/elf32-i386.c | |
parent | 0763ab812686d5587c7db200cb84ccafd655e243 (diff) | |
download | gdb-09a24cbf399cbb184c7121403d394e3db416ae71.zip gdb-09a24cbf399cbb184c7121403d394e3db416ae71.tar.gz gdb-09a24cbf399cbb184c7121403d394e3db416ae71.tar.bz2 |
2009-06-19 H.J. Lu <hongjiu.lu@intel.com>
* elf32-i386.c (elf_i386_check_relocs): Properly check local
symbol on error.
* elf64-x86-64.c (elf64_x86_64_check_relocs): Likewise.
Diffstat (limited to 'bfd/elf32-i386.c')
-rw-r--r-- | bfd/elf32-i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-i386.c b/bfd/elf32-i386.c index bac80e3..5ce7b27 100644 --- a/bfd/elf32-i386.c +++ b/bfd/elf32-i386.c @@ -1538,7 +1538,7 @@ elf_i386_check_relocs (bfd *abfd, tls_type |= old_tls_type; else { - if (h->root.root.string) + if (h) name = h->root.root.string; else name = bfd_elf_sym_name (abfd, symtab_hdr, isym, |