From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1174202-garchives=archives.gentoo.org@lists.gentoo.org> 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 C6BD61382C5 for <garchives@archives.gentoo.org>; Mon, 25 May 2020 18:02:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E70AEE082B; Mon, 25 May 2020 18:02:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D0310E082B for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 18:02:23 +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 5574534EF6C for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 18:02:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54E57217 for <gentoo-commits@lists.gentoo.org>; Mon, 25 May 2020 18:02:20 +0000 (UTC) From: "Fabian Groffen" <grobian@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" <grobian@gentoo.org> Message-ID: <1590429709.598110a8c77b8d6995b9f34e2455742b692ff8f1.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: libq/ X-VCS-Repository: proj/portage-utils X-VCS-Files: libq/hash.c X-VCS-Directories: libq/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 598110a8c77b8d6995b9f34e2455742b692ff8f1 X-VCS-Branch: master Date: Mon, 25 May 2020 18:02:20 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 294e171c-0a06-4283-93e8-5f700c7868ae X-Archives-Hash: f83e1f312080277bc2ab84daf4c33d5f commit: 598110a8c77b8d6995b9f34e2455742b692ff8f1 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Mon May 25 18:01:49 2020 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Mon May 25 18:01:49 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=598110a8 libq/hash: avoid invalid (double) fclose Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> libq/hash.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libq/hash.c b/libq/hash.c index a51ea6a..88c4b56 100644 --- a/libq/hash.c +++ b/libq/hash.c @@ -291,7 +291,6 @@ hash_multiple_file_fd( #endif } - fclose(f); return 0; }