From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Trm-0005BZ-JY for qemu-devel@nongnu.org; Thu, 29 Mar 2018 05:29:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1Trj-0005WG-Dq for qemu-devel@nongnu.org; Thu, 29 Mar 2018 05:29:06 -0400 Date: Thu, 29 Mar 2018 11:28:56 +0200 From: Cornelia Huck Message-ID: <20180329112856.76c7c241.cohuck@redhat.com> In-Reply-To: <20180329112721.6c7ee3f3@redhat.com> References: <152231456507.69730.15601462044394150786.stgit@bahia.lan> <152231460685.69730.14860451936216690693.stgit@bahia.lan> <20180329112721.6c7ee3f3@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/3] hw/s390x: fix memory leak in s390_init_ipl_dev() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Igor Mammedov Cc: Greg Kurz , qemu-devel@nongnu.org, Peter Crosthwaite , Eduardo Habkost , David Hildenbrand , Alexander Graf , qemu-stable@nongnu.org, qemu-s390x@nongnu.org, Paolo Bonzini , Richard Henderson On Thu, 29 Mar 2018 11:27:21 +0200 Igor Mammedov wrote: > On Thu, 29 Mar 2018 11:10:06 +0200 > Greg Kurz wrote: > > > The string returned by object_property_get_str() is dynamically allocated. > > > > Fixes: 3c4e9baacf4d9 > > Signed-off-by: Greg Kurz > > --- > > hw/s390x/s390-virtio-ccw.c | 5 ++++- > > 1 file changed, 4 insertions(+), 1 deletion(-) > > > > diff --git a/hw/s390x/s390-virtio-ccw.c b/hw/s390x/s390-virtio-ccw.c > > index 864145a7c6f3..435f7c99e77c 100644 > > --- a/hw/s390x/s390-virtio-ccw.c > > +++ b/hw/s390x/s390-virtio-ccw.c > > @@ -246,6 +246,7 @@ static void s390_init_ipl_dev(const char *kernel_filename, > > { > > Object *new = object_new(TYPE_S390_IPL); > > DeviceState *dev = DEVICE(new); > > + char *netboot_fw_prop; > > > > if (kernel_filename) { > > qdev_prop_set_string(dev, "kernel", kernel_filename); > > @@ -256,9 +257,11 @@ static void s390_init_ipl_dev(const char *kernel_filename, > > qdev_prop_set_string(dev, "cmdline", kernel_cmdline); > > qdev_prop_set_string(dev, "firmware", firmware); > > qdev_prop_set_bit(dev, "enforce_bios", enforce_bios); > > - if (!strlen(object_property_get_str(new, "netboot_fw", &error_abort))) { > > + netboot_fw_prop = object_property_get_str(new, "netboot_fw", &error_abort); > > + if (!strlen(netboot_fw_prop)) { > probably not really issue here but, > is strlen really safe in case netboot_fw_prop == NULL? It will always be != NULL IIUC. > > > qdev_prop_set_string(dev, "netboot_fw", netboot_fw); > > } > > + g_free(netboot_fw_prop); > > object_property_add_child(qdev_get_machine(), TYPE_S390_IPL, > > new, NULL); > > object_unref(new); > > > > >