From c4019aa92318afe17e435f01d482e99b14d65929 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sat, 8 Feb 2020 20:22:42 +0100 Subject: [PATCH] xbps_transaction_files: fixed another memleak. Thanks valgrind --- lib/transaction_files.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/transaction_files.c b/lib/transaction_files.c index 66f4e6ef..573eb336 100644 --- a/lib/transaction_files.c +++ b/lib/transaction_files.c @@ -740,6 +740,7 @@ collect_binpkg_files(struct xbps_handle *xhp, xbps_dictionary_t pkg_repod, } rv = collect_files(xhp, filesd, pkgname, pkgver, idx, update, false, false, false); + xbps_object_release(filesd); goto out; } archive_read_data_skip(ar);