diff options
author | Tom Tromey <tromey@redhat.com> | 2012-08-20 14:32:31 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-08-20 14:32:31 +0000 |
commit | 06e7acd76f7f0e6b64164d30451d02a2a7dbfbb6 (patch) | |
tree | ba3b2b1dd41f813d84346a90e3c304b1af595604 /bfd/opncls.c | |
parent | 542385d9f7b4804a6460d71406dc3bfdaec2dd6b (diff) | |
download | binutils-06e7acd76f7f0e6b64164d30451d02a2a7dbfbb6.zip binutils-06e7acd76f7f0e6b64164d30451d02a2a7dbfbb6.tar.gz binutils-06e7acd76f7f0e6b64164d30451d02a2a7dbfbb6.tar.bz2 |
* vms-lib.c (_bfd_vms_lib_get_module): Use bfd_zmalloc for
areltdata.
* opncls.c (_bfd_delete_bfd): Free arelt_data.
* mach-o.c (bfd_mach_o_fat_member_init): Use bfd_zmalloc for
areltdata.
* ecoff.c (_bfd_ecoff_slurp_armap): Use free for mapdata.
* coff-rs6000.c (_bfd_xcoff_read_ar_hdr): Use bfd_zmalloc for
areltdata.
(xcoff_write_archive_contents_old): Likewise.
(xcoff_write_archive_contents_big): Likewise.
* archive64.c (bfd_elf64_archive_slurp_armap): Use free for
areltdata.
* archive.c (_bfd_generic_read_ar_hdr_mag): Use bfd_zmalloc and
free for areltdata.
(_bfd_get_elt_at_filepos): Likewise. Clear n_nfd->arelt_data on
failure.
(do_slurp_bsd_armap): Use bfd_zmalloc and free for areltdata.
(do_slurp_coff_armap): Likewise.
(_bfd_slurp_extended_name_table): Likewise.
(bfd_slurp_bsd_armap_f2): Likewise. Don't leak 'mapdata'.
Diffstat (limited to 'bfd/opncls.c')
-rw-r--r-- | bfd/opncls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/opncls.c b/bfd/opncls.c index b2ed9be..fdccba3 100644 --- a/bfd/opncls.c +++ b/bfd/opncls.c @@ -136,6 +136,7 @@ _bfd_delete_bfd (bfd *abfd) objalloc_free ((struct objalloc *) abfd->memory); } + free (abfd->arelt_data); free (abfd); } |