diff options
author | Larry Ewing <lewing@ximian.com> | 2003-06-14 01:31:27 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2003-06-14 01:31:27 +0800 |
commit | 8344f37af4533729197a6fa72ba1c37c7d4b2799 (patch) | |
tree | c77b1be05cd6d50f63ce895ea361d4bd0a336571 /my-evolution/e-summary.c | |
parent | 601f9ed9e5e970a29a2db9a3b795ff2cad451cdd (diff) | |
download | gsoc2013-evolution-8344f37af4533729197a6fa72ba1c37c7d4b2799.tar.gz gsoc2013-evolution-8344f37af4533729197a6fa72ba1c37c7d4b2799.tar.zst gsoc2013-evolution-8344f37af4533729197a6fa72ba1c37c7d4b2799.zip |
free the filename.
2003-06-13 Larry Ewing <lewing@ximian.com>
* e-summary.c (e_summary_url_requested): free the filename.
svn path=/trunk/; revision=21436
Diffstat (limited to 'my-evolution/e-summary.c')
-rw-r--r-- | my-evolution/e-summary.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/my-evolution/e-summary.c b/my-evolution/e-summary.c index 3cccc4bb7c..29ce61b28c 100644 --- a/my-evolution/e-summary.c +++ b/my-evolution/e-summary.c @@ -441,6 +441,7 @@ e_summary_url_requested (GtkHTML *html, contents = e_read_file_with_length (filename, &length); if (contents == NULL) { + g_free (filename); return; } @@ -453,6 +454,7 @@ e_summary_url_requested (GtkHTML *html, gtk_html_stream_write (stream, img->buffer, img->bufsize); gtk_html_stream_close (stream, GTK_HTML_STREAM_OK); + g_free (filename); } static void |