Dont double-free the text body data.

2002-02-06  Not Zed  <NotZed@Ximian.com>

        * mail-callbacks.c (mail_generate_reply): Dont double-free the
        text body data.

svn path=/trunk/; revision=15574
This commit is contained in:
Not Zed
2002-02-06 01:35:22 +00:00
committed by Michael Zucci
parent 978094ae96
commit 45e4e8c185
2 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -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);