* [Qemu-devel] [PATCH v2] qom: Fix memory leak in object_property_set_link()
@ 2013-11-15 17:09 Vlad Yasevich
2013-11-18 8:09 ` Amos Kong
2013-11-18 15:52 ` [Qemu-devel] [PATCH v2 for-1.7] " Andreas Färber
0 siblings, 2 replies; 4+ messages in thread
From: Vlad Yasevich @ 2013-11-15 17:09 UTC (permalink / raw)
To: qemu-devel; +Cc: 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>
---
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,
--
1.8.4.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2] qom: Fix memory leak in object_property_set_link()
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 ` [Qemu-devel] [PATCH v2 for-1.7] " Andreas Färber
1 sibling, 0 replies; 4+ messages in thread
From: Amos Kong @ 2013-11-18 8:09 UTC (permalink / raw)
To: Vlad Yasevich; +Cc: qemu-devel
On Fri, Nov 15, 2013 at 12:09:47PM -0500, Vlad Yasevich wrote:
> Save the result of the call to object_get_cannonical_path()
> so we can free it.
>
> Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
> ---
> 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);
Reviewed-by: Amos Kong <akong@redhat.com>
> }
>
> Object *object_property_get_link(Object *obj, const char *name,
> --
> 1.8.4.2
>
--
Amos.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2 for-1.7] qom: Fix memory leak in object_property_set_link()
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
2013-11-19 8:48 ` Stefan Hajnoczi
1 sibling, 1 reply; 4+ messages in thread
From: Andreas Färber @ 2013-11-18 15:52 UTC (permalink / raw)
To: Vlad Yasevich, qemu-devel
Cc: Amos Kong, Anthony Liguori, Stefan Hajnoczi, qemu-stable
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
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2 for-1.7] qom: Fix memory leak in object_property_set_link()
2013-11-18 15:52 ` [Qemu-devel] [PATCH v2 for-1.7] " Andreas Färber
@ 2013-11-19 8:48 ` Stefan Hajnoczi
0 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2013-11-19 8:48 UTC (permalink / raw)
To: Andreas Färber
Cc: Vlad Yasevich, Amos Kong, qemu-devel, Anthony Liguori,
qemu-stable
On Mon, Nov 18, 2013 at 04:52:02PM +0100, Andreas Färber wrote:
> 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.
Please merge Vlad's patch.
I wrote mine independently because I hadn't read Vlad's email yet.
Stefan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-11-19 8:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [Qemu-devel] [PATCH v2 for-1.7] " Andreas Färber
2013-11-19 8:48 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).