aboutsummaryrefslogtreecommitdiff
path: root/libctf/ctf-open-bfd.c
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2019-07-29 17:02:48 +0100
committerNick Alcock <nick.alcock@oracle.com>2019-09-23 14:12:54 +0100
commitbf05b84eda6ea5e903ed19fad4e509eca43a7267 (patch)
tree236e0f2df8302b33392eec6ada6b423fbf54fad3 /libctf/ctf-open-bfd.c
parentfba72c8c05c56493fc78a4328b4969b9f136ee0c (diff)
downloadbinutils-bf05b84eda6ea5e903ed19fad4e509eca43a7267.zip
binutils-bf05b84eda6ea5e903ed19fad4e509eca43a7267.tar.gz
binutils-bf05b84eda6ea5e903ed19fad4e509eca43a7267.tar.bz2
libctf: actually close bfds we have opened
When we do a ctf_fdopen, we open things via bfd_fdopenr and set up a hook to close the bfd again... but then we never actually call that hook from anywhere, so we eventually leak every bfd we open. Fix this by calling the hook (if set) in ctf_arc_close. New in v3. libctf/ * ctf-archive.c (ctf_arc_close): Call ctfi_bfd_close if set. * ctf-open-bfd.c (ctf_bfdclose): Fix comment.
Diffstat (limited to 'libctf/ctf-open-bfd.c')
-rw-r--r--libctf/ctf-open-bfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-open-bfd.c b/libctf/ctf-open-bfd.c
index da62463..d50bd0b 100644
--- a/libctf/ctf-open-bfd.c
+++ b/libctf/ctf-open-bfd.c
@@ -66,7 +66,7 @@ ctf_new_archive_internal (int is_archive, struct ctf_archive *arc,
return arci;
}
-/* Free the BFD bits of a CTF file on ctf_file_close(). */
+/* Free the BFD bits of a CTF file on ctf_arc_close(). */
static void
ctf_bfdclose (struct ctf_archive_internal *arci)