gdbusprivate: fix a missed g_mutex_free()

This should have been changed to g_mutex_clear()
This commit is contained in:
Ryan Lortie 2011-10-04 20:07:31 -04:00
parent 6f343ca548
commit 26a6b3c6ff

View File

@ -1687,7 +1687,7 @@ _g_dbus_worker_flush_sync (GDBusWorker *worker,
/* note:the element is removed from worker->write_pending_flushes in flush_cb() above */
g_cond_clear (&data->cond);
g_mutex_free (&data->mutex);
g_mutex_clear (&data->mutex);
if (data->error != NULL)
{
ret = FALSE;