qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/9] qom: object: delete properties before calling i


From: Paolo Bonzini
Subject: [Qemu-devel] [PATCH 1/9] qom: object: delete properties before calling instance_finalize
Date: Wed, 30 Jul 2014 12:27:04 +0200

This ensures that the children's unparent callback will still
have a usable parent.

Signed-off-by: Paolo Bonzini <address@hidden>
---
 qom/object.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qom/object.c b/qom/object.c
index 0e8267b..f301bc2 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -418,8 +418,8 @@ static void object_finalize(void *data)
     Object *obj = data;
     TypeImpl *ti = obj->class->type;
 
-    object_deinit(obj, ti);
     object_property_del_all(obj);
+    object_deinit(obj, ti);
 
     g_assert(obj->ref == 0);
     if (obj->free) {
-- 
1.8.3.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]