From: "Andreas Färber" <afaerber@suse.de>
To: Vlad Yasevich <vyasevic@redhat.com>, qemu-devel@nongnu.org
Cc: Amos Kong <akong@redhat.com>,
Anthony Liguori <anthony@codemonkey.ws>,
Stefan Hajnoczi <stefanha@redhat.com>,
qemu-stable <qemu-stable@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v2 for-1.7] qom: Fix memory leak in object_property_set_link()
Date: Mon, 18 Nov 2013 16:52:02 +0100 [thread overview]
Message-ID: <528A37A2.4020303@suse.de> (raw)
In-Reply-To: <1384535387-6290-1-git-send-email-vyasevic@redhat.com>
Am 15.11.2013 18:09, schrieb Vlad Yasevich:
> Save the result of the call to object_get_cannonical_path()
> so we can free it.
>
> Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Cc: qemu-stable@nongnu.org
Reviewed-by: Andreas Färber <afaerber@suse.de>
in case Anthony wants to pick it up himself, and queued on qom-next:
https://github.com/afaerber/qemu-cpu/commits/qom-next
It looks as if Stefan posted an identical patch with for-1.7 tag but
with his From.
Regards,
Andreas
> ---
> v1->v2: Builds and works :)
>
> qom/object.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/qom/object.c b/qom/object.c
> index b617f26..fc19cf6 100644
> --- a/qom/object.c
> +++ b/qom/object.c
> @@ -838,8 +838,9 @@ char *object_property_get_str(Object *obj, const char *name,
> void object_property_set_link(Object *obj, Object *value,
> const char *name, Error **errp)
> {
> - object_property_set_str(obj, object_get_canonical_path(value),
> - name, errp);
> + gchar *path = object_get_canonical_path(value);
> + object_property_set_str(obj, path, name, errp);
> + g_free(path);
> }
>
> Object *object_property_get_link(Object *obj, const char *name,
>
--
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg
next prev parent reply other threads:[~2013-11-18 15:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-11-15 17:09 [Qemu-devel] [PATCH v2] qom: Fix memory leak in object_property_set_link() Vlad Yasevich
2013-11-18 8:09 ` Amos Kong
2013-11-18 15:52 ` Andreas Färber [this message]
2013-11-19 8:48 ` [Qemu-devel] [PATCH v2 for-1.7] " Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=528A37A2.4020303@suse.de \
--to=afaerber@suse.de \
--cc=akong@redhat.com \
--cc=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@nongnu.org \
--cc=stefanha@redhat.com \
--cc=vyasevic@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.