From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2D9B138334 for ; Fri, 27 Dec 2019 17:10:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9C80E0A02; Fri, 27 Dec 2019 17:10:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9DB4AE0A02 for ; Fri, 27 Dec 2019 17:10:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0D7B34DC29 for ; Fri, 27 Dec 2019 17:10:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9085A43 for ; Fri, 27 Dec 2019 17:10:04 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1577466572.d9f4ef9d2a2f75c85e4e66686cb8e24b7f2c4cad.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdazzle/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libdazzle/files/3.30.2-leak-fix.patch X-VCS-Directories: dev-libs/libdazzle/files/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: d9f4ef9d2a2f75c85e4e66686cb8e24b7f2c4cad X-VCS-Branch: master Date: Fri, 27 Dec 2019 17:10: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c3d757c5-8669-4727-aa95-012ba17106f6 X-Archives-Hash: 77f00898b60d6d1a7931800836934338 commit: d9f4ef9d2a2f75c85e4e66686cb8e24b7f2c4cad Author: Michael Mair-Keimberger gmail com> AuthorDate: Fri Dec 27 15:59:01 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Dec 27 17:09:32 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9f4ef9d dev-libs/libdazzle: remove unused patch(es) Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/14138 Signed-off-by: Aaron Bauman gentoo.org> dev-libs/libdazzle/files/3.30.2-leak-fix.patch | 27 -------------------------- 1 file changed, 27 deletions(-) diff --git a/dev-libs/libdazzle/files/3.30.2-leak-fix.patch b/dev-libs/libdazzle/files/3.30.2-leak-fix.patch deleted file mode 100644 index b3a1debf605..00000000000 --- a/dev-libs/libdazzle/files/3.30.2-leak-fix.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 6f8436709430fd5ebaebd90dd55885636030940d Mon Sep 17 00:00:00 2001 -From: Christian Hergert -Date: Mon, 19 Nov 2018 17:43:24 -0800 -Subject: [PATCH] three-grid: don't leak values from hashtable - -We are responsible for freeing the GList chain, so ensure we do that at -the end of size-allocate. ---- - src/widgets/dzl-three-grid.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/src/widgets/dzl-three-grid.c b/src/widgets/dzl-three-grid.c -index 0de5484..d00d0b1 100644 ---- a/src/widgets/dzl-three-grid.c -+++ b/src/widgets/dzl-three-grid.c -@@ -569,6 +569,8 @@ dzl_three_grid_size_allocate (GtkWidget *widget, - area.y += child_alloc.height + priv->row_spacing; - area.height -= child_alloc.height + priv->row_spacing; - } -+ -+ g_list_free (values); - } - - static void --- -2.17.0 -