aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/e-summary-mail.c
diff options
context:
space:
mode:
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r--my-evolution/e-summary-mail.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c
index fbb9a28de9..b3696dc5fb 100644
--- a/my-evolution/e-summary-mail.c
+++ b/my-evolution/e-summary-mail.c
@@ -118,7 +118,7 @@ e_summary_mail_generate_html (ESummary *summary)
ESummaryMail *mail;
GString *string;
GList *p;
- gchar *s;
+ char *s, *old;
g_return_if_fail (summary != NULL);
g_return_if_fail (IS_E_SUMMARY (summary));
@@ -137,8 +137,12 @@ e_summary_mail_generate_html (ESummary *summary)
}
g_string_append (string, "</table></dd></dl>");
- g_free (mail->html);
+
+ old = mail->html;
mail->html = string->str;
+
+ g_free (old);
+
g_string_free (string, FALSE);
}
@@ -391,6 +395,7 @@ e_summary_mail_init (ESummary *summary,
mail = g_new0 (ESummaryMail, 1);
summary->mail = mail;
+ mail->html = NULL;
CORBA_exception_init (&ev);
mail->folder_info = oaf_activate_from_id (MAIL_IID, 0, NULL, &ev);
if (BONOBO_EX (&ev)) {
an> * BROKEN on alpha: Does not compilekris2004-02-251-1/+7 * Use PLIST_FILES.trevor2004-02-062-1/+1 * Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.marcus2004-02-041-1/+1 * SIZEify.trevor2004-01-301-0/+1 * Reset unreachable MAINTAINERs to ports@FreeBSD.orgeik2003-11-201-1/+1 * De-pkg-comment.knu2003-02-212-1/+1 * Respect CC and CFLAGS, and fix a bug involving use of uninitializedkris2002-10-203-0/+22