diff options
author | DJ Delorie <dj@redhat.com> | 2013-11-05 22:13:04 -0500 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2013-11-05 22:13:04 -0500 |
commit | 2bc56d66132a8d4a06520b0531b8708108197c9b (patch) | |
tree | aabd6d9bc031af520e882af922a4241ae6cb74f9 /bfd/elf32-rl78.c | |
parent | a5b5d5ae56990bfe06a77d4de82ed359669a2db2 (diff) | |
download | gdb-2bc56d66132a8d4a06520b0531b8708108197c9b.zip gdb-2bc56d66132a8d4a06520b0531b8708108197c9b.tar.gz gdb-2bc56d66132a8d4a06520b0531b8708108197c9b.tar.bz2 |
* elf32-rl78.c (elf32_rl78_relax_delete_bytes): Make sure relocs
are loaded before trying to use them.
Diffstat (limited to 'bfd/elf32-rl78.c')
-rw-r--r-- | bfd/elf32-rl78.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bfd/elf32-rl78.c b/bfd/elf32-rl78.c index 9060663..5bdef67 100644 --- a/bfd/elf32-rl78.c +++ b/bfd/elf32-rl78.c @@ -1481,6 +1481,12 @@ elf32_rl78_relax_delete_bytes (bfd *abfd, asection *sec, bfd_vma addr, int count toaddr = alignment_rel->r_offset; irel = elf_section_data (sec)->relocs; + if (irel == NULL) + { + _bfd_elf_link_read_relocs (sec->owner, sec, NULL, NULL, TRUE); + irel = elf_section_data (sec)->relocs; + } + irelend = irel + sec->reloc_count; /* Actually delete the bytes. */ @@ -1496,7 +1502,7 @@ elf32_rl78_relax_delete_bytes (bfd *abfd, asection *sec, bfd_vma addr, int count memset (contents + toaddr - count, 0x03, count); /* Adjust all the relocs. */ - for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++) + for (; irel && irel < irelend; irel++) { /* Get the new reloc address. */ if (irel->r_offset > addr |