summaryrefslogtreecommitdiff
path: root/bfd/elf32-avr.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2008-06-04 09:59:08 +0000
committerNick Clifton <nickc@redhat.com>2008-06-04 09:59:08 +0000
commit081e66ab5209aee414e25a22ac7c6139a8ecae35 (patch)
tree1a07084734deb644f8fcda5e12e97108e044d4b9 /bfd/elf32-avr.c
parent6e6e6fa89486a3d820fdc07b1c6b1d86683f6f43 (diff)
downloadbinutils-redhat-081e66ab5209aee414e25a22ac7c6139a8ecae35.tar.gz
PR ld/6019
* elf32-avr.c (elf32_avr_relax_section): Handle the case where there are no local symbols.
Diffstat (limited to 'bfd/elf32-avr.c')
-rw-r--r--bfd/elf32-avr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/elf32-avr.c b/bfd/elf32-avr.c
index 3cbfb75e41..ee2afab8f2 100644
--- a/bfd/elf32-avr.c
+++ b/bfd/elf32-avr.c
@@ -2034,7 +2034,8 @@ elf32_avr_relax_section (bfd *abfd,
/* Check for local symbols. */
isym = (Elf_Internal_Sym *) symtab_hdr->contents;
isymend = isym + symtab_hdr->sh_info;
- for (; isym < isymend; isym++)
+ /* PR 6019: There may not be any local symbols. */
+ for (; isym != NULL && isym < isymend; isym++)
{
if (isym->st_value == section_offset_of_ret_insn
&& isym->st_shndx == sec_shndx)