From: Ian Lance Taylor Date: Fri, 27 Jan 1995 21:24:28 +0000 (+0000) Subject: * elfcode.h (elf_sort_hdrs): Correct SHF_ALLOC test. X-Git-Tag: gdb-4_18~12564 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6977046f0f63d5ec3479bf8f0fdf685d2b1c5fc3;p=platform%2Fupstream%2Fbinutils.git * elfcode.h (elf_sort_hdrs): Correct SHF_ALLOC test. (assign_file_positions_except_relocs): Free sorted_hdrs. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 9d74461..723020c 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 27 16:13:42 1995 Ian Lance Taylor + + * elfcode.h (elf_sort_hdrs): Correct SHF_ALLOC test. + (assign_file_positions_except_relocs): Free sorted_hdrs. + Thu Jan 26 09:00:12 1995 Steve Chamberlain * srec.c (srec_set_section_contents): Fix off by diff --git a/bfd/elfcode.h b/bfd/elfcode.h index 43a071c..505ca57 100644 --- a/bfd/elfcode.h +++ b/bfd/elfcode.h @@ -2117,6 +2117,8 @@ assign_file_positions_except_relocs (abfd, dosyms) if (phdr_map == (file_ptr) -1) return false; BFD_ASSERT ((bfd_size_type) phdr_map <= (bfd_size_type) phdr_off + phdr_size); + + free (sorted_hdrs); } /* Place the section headers. */ @@ -2153,7 +2155,7 @@ elf_sort_hdrs (arg1, arg2) } else { - if ((hdr1->sh_flags & SHF_ALLOC) != 0) + if ((hdr2->sh_flags & SHF_ALLOC) != 0) return 1; return 0; }