This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 11/19] libctf: fix memory leak on ctf_compress_write error path


We were failing to free the compressed-data buffer if compression
failed.

libctf/
	* ctf-create.c (ctf_compress_write): Fix leak.
---
 libctf/ctf-create.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c
index 5b6cc8b597..2e05649d4a 100644
--- a/libctf/ctf-create.c
+++ b/libctf/ctf-create.c
@@ -1980,7 +1980,6 @@ ctf_compress_write (ctf_file_t *fp, int fd)
     {
       ctf_dprintf ("zlib deflate err: %s\n", zError (rc));
       err = ctf_set_errno (fp, ECTF_COMPRESS);
-      ctf_free (buf);
       goto ret;
     }
 
-- 
2.22.0.238.g049a27acdc


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]