qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] qom: Fix object_initialize_with_type() assertion


From: Andreas Färber
Subject: [Qemu-devel] [PATCH] qom: Fix object_initialize_with_type() assertion
Date: Mon, 20 Feb 2012 00:49:07 +0100

Assert the object is at least sizeof(Object), not sizeof(ObjectClass).

Signed-off-by: Andreas Färber <address@hidden>
---
 qom/object.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/qom/object.c b/qom/object.c
index b1ead15..dbfd6a4 100644
--- a/qom/object.c
+++ b/qom/object.c
@@ -262,7 +262,7 @@ void object_initialize_with_type(void *data, TypeImpl *type)
     Object *obj = data;
 
     g_assert(type != NULL);
-    g_assert(type->instance_size >= sizeof(ObjectClass));
+    g_assert(type->instance_size >= sizeof(Object));
 
     type_class_init(type);
     g_assert(type->abstract == false);
-- 
1.7.7




reply via email to

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