On 02/19/2012 05:49 PM, Andreas Färber wrote:
Assert the object is at least sizeof(Object), not sizeof(ObjectClass).
Signed-off-by: Andreas Färber<[email protected]>
Applied. Thanks.
Regards,
Anthony Liguori
---
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);