aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLarry Ewing <lewing@ximian.com>2001-09-13 16:28:21 +0800
committerLarry Ewing <lewing@src.gnome.org>2001-09-13 16:28:21 +0800
commita44e494e2de669966d2035137736366f813fe6ad (patch)
tree8ff1cc9d7b70907b3beaf3068ec13940b221de0e
parent638b60e50de5157015fa6bfb1db56ebf220e41a1 (diff)
downloadgsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar.gz
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar.bz2
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar.lz
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar.xz
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.tar.zst
gsoc2013-evolution-a44e494e2de669966d2035137736366f813fe6ad.zip
free the credits string.
2001-09-13 Larry Ewing <lewing@ximian.com> * mail-tools.c (mail_tool_quote_message): free the credits string. svn path=/trunk/; revision=12795
-rw-r--r--mail/ChangeLog4
-rw-r--r--mail/mail-tools.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 0d079f09ca..a7be78d90b 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,7 @@
+2001-09-13 Larry Ewing <lewing@ximian.com>
+
+ * mail-tools.c (mail_tool_quote_message): free the credits string.
+
2001-09-12 <NotZed@Ximian.com>
* mail-vfolder.c (vfolder_remove_cb): Fixed the remove callback
diff --git a/mail/mail-tools.c b/mail/mail-tools.c
index 45d5a45a5e..0848044b92 100644
--- a/mail/mail-tools.c
+++ b/mail/mail-tools.c
@@ -418,6 +418,7 @@ mail_tool_quote_message (CamelMimeMessage *message, const char *fmt, ...)
text,
want_plain ? "" : "</i></blockquote>");
g_free (text);
+ g_free (credits);
return ret_text;
}