]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qom: Assert that objects being destroyed have no parent
authorEduardo Habkost <ehabkost@redhat.com>
Tue, 15 Dec 2020 22:41:33 +0000 (17:41 -0500)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 2 Jan 2021 20:03:09 +0000 (21:03 +0100)
QOM reference counting bugs are often hard to detect, but there's
one kind of bug that's easier: if we are freeing an object but is
still attached to a parent, it means the reference count is wrong
(because the parent always hold a reference to their children).

Add an assertion to make sure we detect those cases.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <20201215224133.3545901-3-ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
qom/object.c

index 5cd43fe366b75ff66f4a4a06988f9182baa47379..2fa0119647cc3f72feec3e5c990c3d325bcb33b1 100644 (file)
@@ -685,6 +685,7 @@ static void object_finalize(void *data)
     object_deinit(obj, ti);
 
     g_assert(obj->ref == 0);
+    g_assert(obj->parent == NULL);
     if (obj->free) {
         obj->free(obj);
     }