From: DJ Delorie Date: Fri, 11 May 2012 00:01:58 +0000 (+0000) Subject: * elf32-rx.c (rx_elf_object_p): Ignore empty segments. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=74b1e045f3883b1b07ca5f8f83e7a97948891973;p=deliverable%2Fbinutils-gdb.git * elf32-rx.c (rx_elf_object_p): Ignore empty segments. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a46ed85e16..806db7f1e7 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2012-05-10 DJ Delorie + + * elf32-rx.c (rx_elf_object_p): Ignore empty segments. + 2012-05-10 H.J. Lu * elf64-x86-64.c (elf_x86_64_relocate_section): Display signed diff --git a/bfd/elf32-rx.c b/bfd/elf32-rx.c index e74f5465d9..d3b71c317e 100644 --- a/bfd/elf32-rx.c +++ b/bfd/elf32-rx.c @@ -3060,7 +3060,8 @@ rx_elf_object_p (bfd * abfd) { Elf_Internal_Shdr *sec = elf_tdata(abfd)->elf_sect_ptr[u]; - if (phdr[i].p_offset <= (bfd_vma) sec->sh_offset + if (phdr[i].p_filesz + && phdr[i].p_offset <= (bfd_vma) sec->sh_offset && (bfd_vma)sec->sh_offset <= phdr[i].p_offset + (phdr[i].p_filesz - 1)) { /* Found one! The difference between the two addresses, @@ -3084,7 +3085,8 @@ rx_elf_object_p (bfd * abfd) bsec = abfd->sections; while (bsec) { - if (phdr[i].p_vaddr <= bsec->vma + if (phdr[i].p_filesz + && phdr[i].p_vaddr <= bsec->vma && bsec->vma <= phdr[i].p_vaddr + (phdr[i].p_filesz - 1)) { bsec->lma = phdr[i].p_paddr + (bsec->vma - phdr[i].p_vaddr);