diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2021-03-25 16:32:46 +0000 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2021-03-25 16:32:50 +0000 |
commit | 15131809c235047c94387ef9aff207117191ed0b (patch) | |
tree | e73749725de9c2249a0384dea91fb6d40e3e8ccd /libctf/testsuite | |
parent | 0bd65ce30a869559251a34da105fbe45df5a85b3 (diff) | |
download | binutils-15131809c235047c94387ef9aff207117191ed0b.zip binutils-15131809c235047c94387ef9aff207117191ed0b.tar.gz binutils-15131809c235047c94387ef9aff207117191ed0b.tar.bz2 |
libctf: fix memory leak in a test
Harmless, but causes noise that makes it harder to spot other leaks.
libctf/ChangeLog
2021-03-25 Nick Alcock <nick.alcock@oracle.com>
* testsuite/libctf-writable/symtypetab-nonlinker-writeout.c: Don't
leak buf.
Diffstat (limited to 'libctf/testsuite')
-rw-r--r-- | libctf/testsuite/libctf-writable/symtypetab-nonlinker-writeout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libctf/testsuite/libctf-writable/symtypetab-nonlinker-writeout.c b/libctf/testsuite/libctf-writable/symtypetab-nonlinker-writeout.c index 98144de..bdc3faa 100644 --- a/libctf/testsuite/libctf-writable/symtypetab-nonlinker-writeout.c +++ b/libctf/testsuite/libctf-writable/symtypetab-nonlinker-writeout.c @@ -202,6 +202,7 @@ try_maybe_reporting (int report) } ctf_file_close (fp); + free (buf); return; |