aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2007-11-28 13:53:05 +0000
committerNathan Sidwell <nathan@codesourcery.com>2007-11-28 13:53:05 +0000
commitf7bc09bdbcacf440e497242df536910f9f976346 (patch)
treef2815e96a65d69e68109f1c200ccaa53fc8ae00b /include
parente23f1610289a9ba59e77cc214680d38aa7db9e13 (diff)
downloadfsf-binutils-gdb-f7bc09bdbcacf440e497242df536910f9f976346.zip
fsf-binutils-gdb-f7bc09bdbcacf440e497242df536910f9f976346.tar.gz
fsf-binutils-gdb-f7bc09bdbcacf440e497242df536910f9f976346.tar.bz2
* internal.h (ELF_IS_SECTION_IN_SEGMENT): Adjust to cope with
segments at the end of memory.
Diffstat (limited to 'include')
-rw-r--r--include/elf/ChangeLog5
-rw-r--r--include/elf/internal.h7
2 files changed, 9 insertions, 3 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog
index fe6134d..ded6712 100644
--- a/include/elf/ChangeLog
+++ b/include/elf/ChangeLog
@@ -1,3 +1,8 @@
+2007-11-28 Nathan Sidwell <nathan@codesourcery.com>
+
+ * internal.h (ELF_IS_SECTION_IN_SEGMENT): Adjust to cope with
+ segments at the end of memory.
+
2007-11-16 Nick Clifton <nickc@redhat.com>
* dwarf2.h: Mention the location of the DWARF3 spec on the web.
diff --git a/include/elf/internal.h b/include/elf/internal.h
index f5380b8..93c2315 100644
--- a/include/elf/internal.h
+++ b/include/elf/internal.h
@@ -286,11 +286,12 @@ struct elf_segment_map
|| ((bfd_vma) sec_hdr->sh_offset >= segment->p_offset \
&& (sec_hdr->sh_offset + ELF_SECTION_SIZE(sec_hdr, segment) \
<= segment->p_offset + segment->p_filesz))) \
- /* SHF_ALLOC sections must have VMAs within the segment. */ \
+ /* SHF_ALLOC sections must have VMAs within the segment. Be \
+ careful about segments right at the end of memory. */ \
&& ((sec_hdr->sh_flags & SHF_ALLOC) == 0 \
|| (sec_hdr->sh_addr >= segment->p_vaddr \
- && (sec_hdr->sh_addr + ELF_SECTION_SIZE(sec_hdr, segment) \
- <= segment->p_vaddr + segment->p_memsz))))
+ && (sec_hdr->sh_addr - segment->p_vaddr \
+ + ELF_SECTION_SIZE(sec_hdr, segment) <= segment->p_memsz))))
/* Decide if the given sec_hdr is in the given segment in file. */
#define ELF_IS_SECTION_IN_SEGMENT_FILE(sec_hdr, segment) \