aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-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;
}