diff options
author | Alan Modra <amodra@gmail.com> | 2019-05-27 15:38:55 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-05-28 10:05:02 +0930 |
commit | 0eb32b6e1dee07ac199b4bba855205e4de099213 (patch) | |
tree | 88dc12d092aaa765abbad027322f67724abbb457 /bfd/ChangeLog | |
parent | 58db964680f0f17197849a714c30430deafb8bc7 (diff) | |
download | gdb-0eb32b6e1dee07ac199b4bba855205e4de099213.zip gdb-0eb32b6e1dee07ac199b4bba855205e4de099213.tar.gz gdb-0eb32b6e1dee07ac199b4bba855205e4de099213.tar.bz2 |
XCOFF linker segmentation fault
The XCOFF linker temporarily trims the output bfd section list,
without adjusting section_count to suit. This is a little rude, but
the dwarf line number code can easily cope with this situation. So
check for a NULL end of list as well as limiting the saved section
VMAs to the first section_count list entries.
Also fixes
-FAIL: Weak test 3 (main, static) (32-bit)
-FAIL: Weak test 3 (main, static) (64-bit)
PR 24596
* dwarf2.c (save_section_vma, section_vma_same): Check for NULL
end of section list as well as section_count.
* xcofflink.c (xcoff_link_add_symbols): Fix temporarily changed
section list before returning error.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 18bed06..3460d78 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,11 @@ +2019-05-28 Alan Modra <amodra@gmail.com> + + PR 24596 + * dwarf2.c (save_section_vma, section_vma_same): Check for NULL + end of section list as well as section_count. + * xcofflink.c (xcoff_link_add_symbols): Fix temporarily changed + section list before returning error. + 2019-05-27 Alan Modra <amodra@gmail.com> * elf.c (bfd_elf_set_group_contents): Exit on zero size section. |