From: Vlad Yasevich Date: Fri, 15 Nov 2013 17:09:47 +0000 (-0500) Subject: qom: Fix memory leak in object_property_set_link() X-Git-Tag: v1.6.2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=991a5f378261b759b2af2354703c504906418d35;p=thirdparty%2Fqemu.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 Reviewed-by: Amos Kong Reviewed-by: Stefan Hajnoczi Signed-off-by: Andreas Färber (cherry picked from commit 2d3aa28cc2cf382aa04cd577e0be542175eea9bd) Signed-off-by: Michael Roth --- diff --git a/qom/object.c b/qom/object.c index b2479d1c06f..333f807d048 100644 --- a/qom/object.c +++ b/qom/object.c @@ -823,8 +823,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,