commit a22e52c4d8bf6fa15489f29447100b0bef18e31a
parent 36ebc83bd6cd4da9bd670ef39a3a6b1e04dbeba2
Author: Ricardo Mones <mones@claws-mail.org>
Date: Fri, 12 Oct 2012 10:59:51 +0000
2012-10-12 [mones] 3.8.1cvs94
* src/common/utils.c
Remove undeclared mutex symbol
Diffstat:
4 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-12 [mones] 3.8.1cvs94
+
+ * src/common/utils.c
+ Remove undeclared mutex symbol
+
2012-10-12 [colin] 3.8.1cvs93
* src/compose.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4468,3 +4468,4 @@
( cvs diff -u -r 1.60.2.65 -r 1.60.2.66 src/procmsg.h; ) > 3.8.1cvs91.patchset
( 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
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=93
+EXTRA_VERSION=94
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/common/utils.c b/src/common/utils.c
@@ -5311,8 +5311,7 @@ int claws_unlink(const gchar *filename)
GMutex *cm_mutex_new(void) {
#if GLIB_CHECK_VERSION(2,32,0)
- GMutex *m = mutex;
- m = g_new0(GMutex, 1);
+ GMutex *m = g_new0(GMutex, 1);
g_mutex_init(m);
return m;
#else