From: Alan Modra Date: Wed, 3 Jun 2020 06:03:01 +0000 (+0930) Subject: PR26069, strip/objcopy memory leaks X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=0ed18fa177858d67fec42babbca3fef4ae1d939f;p=deliverable%2Fbinutils-gdb.git PR26069, strip/objcopy memory leaks PR 26029 * elf.c (_bfd_elf_close_and_cleanup): Free elf_shstrtab for core files as well as objects. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a3e777e990..21302711f4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2020-06-03 Alan Modra + + PR 26029 + * elf.c (_bfd_elf_close_and_cleanup): Free elf_shstrtab for + core files as well as objects. + 2020-06-01 H.J. Lu PR ld/26067 diff --git a/bfd/elf.c b/bfd/elf.c index e335ff7efb..9ca42e10d8 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -9438,7 +9438,9 @@ bfd_boolean _bfd_elf_close_and_cleanup (bfd *abfd) { struct elf_obj_tdata *tdata = elf_tdata (abfd); - if (bfd_get_format (abfd) == bfd_object && tdata != NULL) + if (tdata != NULL + && (bfd_get_format (abfd) == bfd_object + || bfd_get_format (abfd) == bfd_core)) { if (elf_tdata (abfd)->o != NULL && elf_shstrtab (abfd) != NULL) _bfd_elf_strtab_free (elf_shstrtab (abfd));