diff options
-rw-r--r-- | bfd/elf32-avr.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/elf32-avr.c b/bfd/elf32-avr.c index 3a1d238..8c003d0 100644 --- a/bfd/elf32-avr.c +++ b/bfd/elf32-avr.c @@ -1927,9 +1927,6 @@ elf32_avr_relax_delete_bytes (bfd *abfd, symtab_hdr = &elf_tdata (abfd)->symtab_hdr; sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec); contents = elf_section_data (sec)->this_hdr.contents; - if (contents == NULL - && !bfd_malloc_and_get_section (abfd, sec, &contents)) - return false; relax_info = get_avr_relax_info (sec); toaddr = sec->size; @@ -3071,6 +3068,10 @@ elf32_avr_relax_section (bfd *abfd, "at address 0x%x deleted.\n", (int) dot + insn_size); + elf_section_data (sec)->relocs = internal_relocs; + elf_section_data (sec)->this_hdr.contents = contents; + symtab_hdr->contents = (unsigned char *) isymbuf; + /* Delete two bytes of data. */ if (!elf32_avr_relax_delete_bytes (abfd, sec, irel->r_offset + insn_size, 2, |