On 06/10/2015 15:02, Laszlo Ersek wrote: >> void object_unparent(Object *obj) >> { >> if (obj->parent) { >> - object_property_del_child(obj->parent, obj, NULL); >> + g_hash_table_foreach_remove(obj->properties,
This should be obj->parent->properties. Otherwise, the patch looks good. Paolo >> + object_property_del_child, obj); >> } >> }