mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-18 12:24:38 +08:00
* elf.c (map_sections_to_segments): Correct test for start of
writable section in the same page as end of read-only section.
This commit is contained in:
parent
c02920230d
commit
b89fe0ee4b
@ -1,3 +1,8 @@
|
||||
2002-09-28 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elf.c (map_sections_to_segments): Correct test for start of
|
||||
writable section in the same page as end of read-only section.
|
||||
|
||||
2002-09-27 Matt Thomas <matt@3am-software.com>
|
||||
|
||||
* elf32-vax.c (elf_vax_check_relocs): Remove unused
|
||||
|
@ -3317,8 +3317,9 @@ map_sections_to_segments (abfd)
|
||||
}
|
||||
else if (! writable
|
||||
&& (hdr->flags & SEC_READONLY) == 0
|
||||
&& (BFD_ALIGN (last_hdr->lma + last_hdr->_raw_size, maxpagesize)
|
||||
== hdr->lma))
|
||||
&& (((last_hdr->lma + last_hdr->_raw_size - 1)
|
||||
& ~(maxpagesize - 1))
|
||||
!= (hdr->lma & ~(maxpagesize - 1))))
|
||||
{
|
||||
/* We don't want to put a writable section in a read only
|
||||
segment, unless they are on the same page in memory
|
||||
|
Loading…
Reference in New Issue
Block a user