Browse Source

qom: Fix object_initialize_with_type() assertion

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

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
stable-1.1
Andreas Färber 15 years ago
committed by Anthony Liguori
parent
commit
258b2c4258
  1. 2
      qom/object.c

2
qom/object.c

@ -264,7 +264,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);

Loading…
Cancel
Save