From: Ryan Lortie Date: Wed, 5 Oct 2011 00:07:31 +0000 (-0400) Subject: gdbusprivate: fix a missed g_mutex_free() X-Git-Tag: 2.31.0~228 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26a6b3c6ff4ee086f72612930d3134df90980211;p=platform%2Fupstream%2Fglib.git gdbusprivate: fix a missed g_mutex_free() This should have been changed to g_mutex_clear() --- diff --git a/gio/gdbusprivate.c b/gio/gdbusprivate.c index 7ccf98f..480f518 100644 --- a/gio/gdbusprivate.c +++ b/gio/gdbusprivate.c @@ -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;