From 26a6b3c6ff4ee086f72612930d3134df90980211 Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Tue, 4 Oct 2011 20:07:31 -0400 Subject: [PATCH] gdbusprivate: fix a missed g_mutex_free() This should have been changed to g_mutex_clear() --- gio/gdbusprivate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4