commit a18f49eebf9ed1ee7392f3e00701c079819c5f1f
parent 6abb27e6d584d9a50c45275f385d61cafd15aeb7
Author: Colin Leroy <colin@colino.net>
Date: Wed, 10 Oct 2012 07:36:44 +0000
2012-10-10 [colin] 3.8.1cvs88
* src/compose.c
Leak fix (thanks Ricardo!)
Diffstat:
4 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2012-10-10 [colin] 3.8.1cvs88
+
+ * src/compose.c
+ Leak fix (thanks Ricardo!)
+
2012-10-10 [colin] 3.8.1cvs87
* src/common/utils.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4462,3 +4462,4 @@
( cvs diff -u -r 1.53.2.38 -r 1.53.2.39 po/POTFILES.in; cvs diff -u -r 1.274.2.353 -r 1.274.2.354 src/mainwindow.c; cvs diff -u -r 1.9.2.59 -r 1.9.2.60 src/common/defs.h; cvs diff -u -r 1.5.2.47 -r 1.5.2.48 src/gtk/menu.c; cvs diff -u -r 1.4.2.27 -r 1.4.2.28 src/gtk/menu.h; ) > 3.8.1cvs85.patchset
( cvs diff -u -r 1.396.2.3641 -r 1.396.2.3642 ChangeLog; cvs diff -u -r 1.1.2.10 -r 1.1.2.11 doc/man/claws-mail.1; cvs diff -u -r 1.382.2.613 -r 1.382.2.614 src/compose.c; cvs diff -u -r 1.36.2.201 -r 1.36.2.202 src/common/utils.c; ) > 3.8.1cvs86.patchset
( cvs diff -u -r 1.36.2.202 -r 1.36.2.203 src/common/utils.c; ) > 3.8.1cvs87.patchset
+( cvs diff -u -r 1.382.2.614 -r 1.382.2.615 src/compose.c; ) > 3.8.1cvs88.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=87
+EXTRA_VERSION=88
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/compose.c b/src/compose.c
@@ -8543,6 +8543,7 @@ static void compose_destroy(Compose *compose)
g_slist_free(compose->header_list);
slist_free_strings(extra_headers);
+ g_slist_free(extra_headers);
extra_headers = NULL;
compose->header_list = compose->newsgroup_list = compose->to_list = NULL;