]> git.proxmox.com Git - qemu.git/commitdiff
qom: Fix memory leak in object_property_set_link()
authorVlad Yasevich <vyasevic@redhat.com>
Fri, 15 Nov 2013 17:09:47 +0000 (12:09 -0500)
committerAndreas Färber <afaerber@suse.de>
Tue, 19 Nov 2013 09:58:21 +0000 (10:58 +0100)
Save the result of the call to object_get_canonical_path()
so we can free it.

Cc: qemu-stable@nongnu.org
Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Reviewed-by: Amos Kong <akong@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
qom/object.c

index b617f265e7a1d3dca2135bfbea3643d43860c629..fc19cf676a69027fc7978cf32521c0cc45d852aa 100644 (file)
@@ -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,