mirror of https://github.com/xemu-project/xemu.git
qom: Fix memory leak in object_property_set_link()
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>
This commit is contained in:
parent
5c5432e7d6
commit
2d3aa28cc2
|
@ -838,8 +838,9 @@ char *object_property_get_str(Object *obj, const char *name,
|
||||||
void object_property_set_link(Object *obj, Object *value,
|
void object_property_set_link(Object *obj, Object *value,
|
||||||
const char *name, Error **errp)
|
const char *name, Error **errp)
|
||||||
{
|
{
|
||||||
object_property_set_str(obj, object_get_canonical_path(value),
|
gchar *path = object_get_canonical_path(value);
|
||||||
name, errp);
|
object_property_set_str(obj, path, name, errp);
|
||||||
|
g_free(path);
|
||||||
}
|
}
|
||||||
|
|
||||||
Object *object_property_get_link(Object *obj, const char *name,
|
Object *object_property_get_link(Object *obj, const char *name,
|
||||||
|
|
Loading…
Reference in New Issue