From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E45EC1392EF for ; Mon, 10 Mar 2014 06:00:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5272E0AE9; Mon, 10 Mar 2014 06:00:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6523DE0AEA for ; Mon, 10 Mar 2014 06:00:10 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8E63533F883 for ; Mon, 10 Mar 2014 06:00:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id D266C188ED for ; Mon, 10 Mar 2014 06:00:04 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1393556979.e849f8b058188b5371cc656056eb0aa32298cd9e.vapier@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: qlist.c X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: e849f8b058188b5371cc656056eb0aa32298cd9e X-VCS-Branch: master Date: Mon, 10 Mar 2014 06:00:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: edd86c44-d68b-4240-98d0-803df3fe906c X-Archives-Hash: 16bc889db5c35e0f63fd395617006bb1 commit: e849f8b058188b5371cc656056eb0aa32298cd9e Author: Tim Harder gentoo org> AuthorDate: Fri Feb 28 03:09:39 2014 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Feb 28 03:09:39 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage-utils.git;a=commit;h=e849f8b0 qlist: fix minor memory leaks reported by valgrind --- qlist.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qlist.c b/qlist.c index a5a4908..5f8720f 100644 --- a/qlist.c +++ b/qlist.c @@ -437,6 +437,9 @@ int qlist_main(int argc, char **argv) free_sets(state.sets); } + free(state.buf); + free(state.atoms); + return ret; }