2012-10-10 [colin] 3.8.1cvs88
authorColin Leroy <colin@colino.net>
Wed, 10 Oct 2012 07:36:44 +0000 (07:36 +0000)
committerColin Leroy <colin@colino.net>
Wed, 10 Oct 2012 07:36:44 +0000 (07:36 +0000)
* src/compose.c
Leak fix (thanks Ricardo!)

ChangeLog
PATCHSETS
configure.ac
src/compose.c

index eec39760e8627e2789e01be9fe0ea5f63a01e3b8..d7dc4aa6d766eae8c85e852b4386be125c14b2c5 100644 (file)
--- 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
index 2c3c4d1f1d0fd83da2f2e361db543f6c746d1065..0ed903908a8edaad592c7327cfba220bad42633d 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( 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
index 6ded6d9f432d29cf690d5464791f006e775a51ae..41c68a05dbb22ef8acf5372580fc2122c4e15918 100644 (file)
@@ -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=
 
index b827336ad215ea25888a4d1c4f2c27d2e18a1f67..f5eb082cff2e6b156d286618af095fbb1188ca2c 100644 (file)
@@ -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;