aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-callbacks.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7132fc1cf0..40c6689f0c 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-06 Not Zed <NotZed@Ximian.com>
+
+ * mail-callbacks.c (mail_generate_reply): Dont double-free the
+ text body data.
+
2002-01-31 Not Zed <NotZed@Ximian.com>
* mail-callbacks.c (mail_generate_reply): Add attachments after
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 4b54798044..f27f5f72dc 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -1020,10 +1020,6 @@ mail_generate_reply (CamelFolder *folder, CamelMimeMessage *message, const char
g_list_free (to);
g_list_free (cc);
- if (text) {
- e_msg_composer_set_body_text (composer, text);
- g_free (text);
- }
e_msg_composer_set_headers (composer, me ? me->name : NULL, tov, ccv, NULL, subject);
e_destination_freev (tov);