mirror of https://github.com/xemu-project/xemu.git
object: avoid extra class property key duplication
Like object properties, no need to duplicate property name, as it is owned already by ObjectProperty value. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20200110153039.1379601-6-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
9159015995
commit
ba806ffbdf
|
@ -311,7 +311,7 @@ static void type_initialize(TypeImpl *ti)
|
||||||
memcpy(ti->class, parent->class, parent->class_size);
|
memcpy(ti->class, parent->class, parent->class_size);
|
||||||
ti->class->interfaces = NULL;
|
ti->class->interfaces = NULL;
|
||||||
ti->class->properties = g_hash_table_new_full(
|
ti->class->properties = g_hash_table_new_full(
|
||||||
g_str_hash, g_str_equal, g_free, object_property_free);
|
g_str_hash, g_str_equal, NULL, object_property_free);
|
||||||
|
|
||||||
for (e = parent->class->interfaces; e; e = e->next) {
|
for (e = parent->class->interfaces; e; e = e->next) {
|
||||||
InterfaceClass *iface = e->data;
|
InterfaceClass *iface = e->data;
|
||||||
|
@ -343,7 +343,7 @@ static void type_initialize(TypeImpl *ti)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
ti->class->properties = g_hash_table_new_full(
|
ti->class->properties = g_hash_table_new_full(
|
||||||
g_str_hash, g_str_equal, g_free, object_property_free);
|
g_str_hash, g_str_equal, NULL, object_property_free);
|
||||||
}
|
}
|
||||||
|
|
||||||
ti->class->type = ti;
|
ti->class->type = ti;
|
||||||
|
@ -1187,7 +1187,7 @@ object_class_property_add(ObjectClass *klass,
|
||||||
prop->release = release;
|
prop->release = release;
|
||||||
prop->opaque = opaque;
|
prop->opaque = opaque;
|
||||||
|
|
||||||
g_hash_table_insert(klass->properties, g_strdup(name), prop);
|
g_hash_table_insert(klass->properties, prop->name, prop);
|
||||||
|
|
||||||
return prop;
|
return prop;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue