From c4e0911f954acfa7e17ede9e697dbc7c17749c99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Sat, 3 Mar 2018 17:22:22 -0500 Subject: [PATCH] object: fix potential leak in getters If the property is not of the requested type, the getters will leak a QObject. Backports commit 560f19f162529d691619ac69ed032321c7f5f1fb from qemu --- qemu/qom/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu/qom/object.c b/qemu/qom/object.c index 4a3152cc..48573982 100644 --- a/qemu/qom/object.c +++ b/qemu/qom/object.c @@ -1001,7 +1001,7 @@ char *object_property_get_str(struct uc_struct *uc, Object *obj, const char *nam retval = g_strdup(qstring_get_str(qstring)); } - QDECREF(qstring); + qobject_decref(ret); return retval; }