Update of /cvsroot/simplemail/simplemail/gtk
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31577/gtk
Modified Files:
subthreads.c
Log Message:
Free the cond and the mutex.
Index: subthreads.c
===================================================================
RCS file: /cvsroot/simplemail/simplemail/gtk/subthreads.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- subthreads.c 24 Dec 2013 09:15:21 -0000 1.41
+++ subthreads.c 24 Dec 2013 09:16:07 -0000 1.42
@@ -342,6 +342,8 @@
g_cond_wait(data.sync_cond, data.sync_mutex);
g_mutex_unlock(data.sync_mutex);
+ g_cond_free(data.sync_cond);
+ g_mutex_free(data.sync_mutex);
if (rc) *rc = data.rc;
return 0;
|