in object_destroy
while (object->priv->data)
object_free_data_common(object, ((object_data_t*)object->priv->data)->name);
should really be:
while (object->priv->data)
object_free_data_common(object, ((object_data_t*)object->priv->data->data)->name);
otherwise you get random crashes when using object_set_data.
2009-11-01 19:34:00 UTC in Lopster