commit 448407a8fd1505742ca52daf3b477388b417df7e
parent a22e52c4d8bf6fa15489f29447100b0bef18e31a
Author: Salvatore De Paolis <iwkse@claws-mail.org>
Date: Fri, 12 Oct 2012 12:21:30 +0000
2012-10-12 [iwkse] 3.8.1cvs95
* src/common/utils.c
g_free *mutex
Diffstat:
4 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-12 [iwkse] 3.8.1cvs95
+
+ * src/common/utils.c
+ g_free *mutex
+
2012-10-12 [mones] 3.8.1cvs94
* src/common/utils.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4469,3 +4469,4 @@
( cvs diff -u -r 1.213.2.215 -r 1.213.2.216 src/folder.c; cvs diff -u -r 1.1.2.116 -r 1.1.2.117 src/gtk/quicksearch.c; ) > 3.8.1cvs92.patchset
( cvs diff -u -r 1.382.2.615 -r 1.382.2.616 src/compose.c; cvs diff -u -r 1.105.2.177 -r 1.105.2.178 src/prefs_account.c; cvs diff -u -r 1.36.2.203 -r 1.36.2.204 src/common/utils.c; cvs diff -u -r 1.20.2.80 -r 1.20.2.81 src/common/utils.h; ) > 3.8.1cvs93.patchset
( cvs diff -u -r 1.36.2.204 -r 1.36.2.205 src/common/utils.c; ) > 3.8.1cvs94.patchset
+( cvs diff -u -r 1.36.2.205 -r 1.36.2.206 src/common/utils.c; ) > 3.8.1cvs95.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=8
MICRO_VERSION=1
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=94
+EXTRA_VERSION=95
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/common/utils.c b/src/common/utils.c
@@ -5322,7 +5322,7 @@ GMutex *cm_mutex_new(void) {
void cm_mutex_free(GMutex *mutex) {
#if GLIB_CHECK_VERSION(2,32,0)
g_mutex_clear(mutex);
- g_free(m);
+ g_free(mutex);
#else
g_mutex_free(mutex);
#endif