From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53985) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMePo-0007f4-BS for qemu-devel@nongnu.org; Wed, 27 Aug 2014 10:41:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XMePe-0004PO-Sw for qemu-devel@nongnu.org; Wed, 27 Aug 2014 10:41:36 -0400 Received: from lputeaux-656-01-25-125.w80-12.abo.wanadoo.fr ([80.12.84.125]:39412 helo=paradis.irqsave.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XMePe-0004PK-M5 for qemu-devel@nongnu.org; Wed, 27 Aug 2014 10:41:26 -0400 Date: Wed, 27 Aug 2014 16:40:38 +0200 From: =?iso-8859-1?Q?Beno=EEt?= Canet Message-ID: <20140827144036.GI31176@irqsave.net> References: <1409119356-22742-1-git-send-email-famz@redhat.com> <1409119356-22742-5-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1409119356-22742-5-git-send-email-famz@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 4/4] qcow2: Fix leak of opts in qcow2_open List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: Kevin Wolf , qemu-devel@nongnu.org, Stefan Hajnoczi The Wednesday 27 Aug 2014 =E0 14:02:36 (+0800), Fam Zheng wrote : > Not all the error paths release opts, fix it by moving it after the fai= l > label. >=20 > Signed-off-by: Fam Zheng > --- > block/qcow2.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) >=20 > diff --git a/block/qcow2.c b/block/qcow2.c > index f9e045f..b4c4a6e 100644 > --- a/block/qcow2.c > +++ b/block/qcow2.c > @@ -535,7 +535,7 @@ static int qcow2_open(BlockDriverState *bs, QDict *= options, int flags, > unsigned int len, i; > int ret =3D 0; > QCowHeader header; > - QemuOpts *opts; > + QemuOpts *opts =3D NULL; > Error *local_err =3D NULL; > uint64_t ext_end; > uint64_t l1_vm_state_index; > @@ -932,7 +932,6 @@ static int qcow2_open(BlockDriverState *bs, QDict *= options, int flags, > error_setg(errp, "Unsupported value '%s' for qcow2 option " > "'overlap-check'. Allowed are either of the followi= ng: " > "none, constant, cached, all", opt_overlap_check); > - qemu_opts_del(opts); > ret =3D -EINVAL; > goto fail; > } > @@ -946,7 +945,6 @@ static int qcow2_open(BlockDriverState *bs, QDict *= options, int flags, > overlap_check_template & (1 << i)) << i; > } > =20 > - qemu_opts_del(opts); > =20 > if (s->use_lazy_refcounts && s->qcow_version < 3) { > error_setg(errp, "Lazy refcounts require a qcow2 image with at= least " > @@ -964,6 +962,7 @@ static int qcow2_open(BlockDriverState *bs, QDict *= options, int flags, > return ret; The code is returning here in this case and the qemu_opts_del is hidden i= n the fail label. Do we need to qemu_opts_del on success just before return like it was don= e before ? > =20 > fail: > + qemu_opts_del(opts); > g_free(s->unknown_header_fields); > cleanup_unknown_header_ext(bs); > qcow2_free_snapshots(bs); > --=20 > 2.1.0 >=20 >=20