Uninitialize the mutex in SecretService

* Fix resource leak
This commit is contained in:
Stef Walter 2012-07-05 15:40:23 +02:00
parent 49dd623e6e
commit fc0549d2ab

View File

@ -205,6 +205,7 @@ secret_service_finalize (GObject *obj)
if (self->pv->collections)
g_hash_table_destroy (self->pv->collections);
g_clear_object (&self->pv->cancellable);
g_mutex_clear (&self->pv->mutex);
G_OBJECT_CLASS (secret_service_parent_class)->finalize (obj);
}