diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-11 06:48:52 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-11 06:48:52 +0800 |
commit | fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162 (patch) | |
tree | 7291c70eb42ef7480885bc968023478ae2a0685f /my-evolution/e-summary-mail.c | |
parent | b5297de4c44a76856bd3e0385bd8ba36a40c18d1 (diff) | |
download | gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar.gz gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar.bz2 gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar.lz gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar.xz gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.tar.zst gsoc2013-evolution-fb1c9fcb9b5b400ba0b94e942e8033b66d6c3162.zip |
Purification.
* e-summary.c (destroy): free the protocol hash.
* e-summary-rdf.c (tree_walk): plug a leak.
* e-summary-weather.c (e_summary_weather_init_locations): Don't
insert duplicates into the hash table.
* e-summary-mail.c (e_summary_mail_generate_html): free old html
before setting new
* e-summary.c (e_summary_draw): free weather and rdf html strings.
* e-summary-preferences.c (save_known_rdfs): free strings.
svn path=/trunk/; revision=12747
Diffstat (limited to 'my-evolution/e-summary-mail.c')
-rw-r--r-- | my-evolution/e-summary-mail.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/my-evolution/e-summary-mail.c b/my-evolution/e-summary-mail.c index 624b2b3c60..71ab1c6cfa 100644 --- a/my-evolution/e-summary-mail.c +++ b/my-evolution/e-summary-mail.c @@ -120,6 +120,7 @@ e_summary_mail_generate_html (ESummary *summary) } g_string_append (string, "</table></dd></dl>"); + g_free (mail->html); mail->html = string->str; g_string_free (string, FALSE); } |