From nobody Fri May 3 06:10:58 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1568099475; cv=none; d=zoho.com; s=zohoarc; b=WuCPpwYMfVR4d48ssdo5f3IjLrIkGJWPUI9ZVRkmIcyrYkcvAYStqo+9gygp3BDktWl2ISU+ruCOIJAPj7jlXZOBjoPBXFqlHaCtuy144K+8gzqQqaINRQUmqZXEXT47MIrHuKEob1WCZo0hEXOFjLGsJEtGneGcxM5JF5Pwcpw= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1568099475; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=RkQIgHqm2Yif/zRdar/gUtPgZrF2dwvw5Fdx5NfAXNU=; b=GGFK/J7Ni+ICRGsFJ1kD+I31U49LUQRGmyBoS+ISCdjRPHXtwuI0zJtK56pvw4jHTieYi1cGhF0EKzDoIWvbTu41WFAuRhWbxNFrfU8h+CdHWO9FQCWdlzgLQPDZduxbe7KWg2LSNDfT6BM/sxF4NoEfAwPeaJMlmzzF9Bbs31M= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1568099475480228.6902635223853; Tue, 10 Sep 2019 00:11:15 -0700 (PDT) Received: from localhost ([::1]:34488 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7aIx-0002YZ-3p for importer@patchew.org; Tue, 10 Sep 2019 03:11:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45674) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1i7aHs-0001W5-7o for qemu-devel@nongnu.org; Tue, 10 Sep 2019 03:10:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1i7aHq-0004Sd-Au for qemu-devel@nongnu.org; Tue, 10 Sep 2019 03:10:03 -0400 Received: from mx1.redhat.com ([209.132.183.28]:52677) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1i7aHm-0004Po-Fp; Tue, 10 Sep 2019 03:09:58 -0400 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 722CBA37671; Tue, 10 Sep 2019 07:09:57 +0000 (UTC) Received: from localhost.localdomain.com (ovpn-116-217.ams2.redhat.com [10.36.116.217]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1818910018F9; Tue, 10 Sep 2019 07:09:55 +0000 (UTC) From: Kevin Wolf To: qemu-block@nongnu.org Date: Tue, 10 Sep 2019 09:09:49 +0200 Message-Id: <20190910070949.16256-1-kwolf@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.68]); Tue, 10 Sep 2019 07:09:57 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH] qemu-io: Don't leak pattern file in error path X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kwolf@redhat.com, dplotnikov@virtuozzo.com, qemu-devel@nongnu.org, mreitz@redhat.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" qemu_io_alloc_from_file() needs to close the pattern file even if some error occurred. Setting f =3D NULL in the success path and checking it for NULL in the error path isn't strictly necessary at this point, but let's do it anyway in case someone later adds a 'goto error' after closing the file. Coverity: CID 1405303 Fixes: 4d731510d34f280ed45a6de621d016f67a49ea48 Signed-off-by: Kevin Wolf Reviewed-by: Max Reitz Reviewed-by: Stefano Garzarella --- qemu-io-cmds.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/qemu-io-cmds.c b/qemu-io-cmds.c index d46fa166d3..349256a5fe 100644 --- a/qemu-io-cmds.c +++ b/qemu-io-cmds.c @@ -401,6 +401,7 @@ static void *qemu_io_alloc_from_file(BlockBackend *blk,= size_t len, } =20 fclose(f); + f =3D NULL; =20 if (len > pattern_len) { len -=3D pattern_len; @@ -420,6 +421,9 @@ static void *qemu_io_alloc_from_file(BlockBackend *blk,= size_t len, =20 error: qemu_io_free(buf_origin); + if (f) { + fclose(f); + } return NULL; } =20 --=20 2.20.1