diff options
author | Iain Holmes <iain@src.gnome.org> | 2000-12-12 02:50:04 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2000-12-12 02:50:04 +0800 |
commit | cd4860d5678704047ac2882a74b2ba8e95b22737 (patch) | |
tree | 437ceee0c1dcb0e90ef50e09a82591a9c8227a90 /executive-summary/component | |
parent | b7c314b29c684bd589796a1bc0374a2be9c84aa6 (diff) | |
download | gsoc2013-evolution-cd4860d5678704047ac2882a74b2ba8e95b22737.tar.gz gsoc2013-evolution-cd4860d5678704047ac2882a74b2ba8e95b22737.tar.zst gsoc2013-evolution-cd4860d5678704047ac2882a74b2ba8e95b22737.zip |
Memory leaks-- Default HTML prettiness++
Memory leaks--
Default HTML prettiness++
svn path=/trunk/; revision=6911
Diffstat (limited to 'executive-summary/component')
-rw-r--r-- | executive-summary/component/e-summary-util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/executive-summary/component/e-summary-util.c b/executive-summary/component/e-summary-util.c index 8ed8d4daea..52f4994185 100644 --- a/executive-summary/component/e-summary-util.c +++ b/executive-summary/component/e-summary-util.c @@ -45,6 +45,7 @@ e_pixmap_file (const char *filename) return ret; } + g_free (edir); /* Try the evolution button images dir */ edir = g_concat_dir_and_file (EVOLUTION_DATADIR "/images/evolution/buttons", @@ -56,6 +57,7 @@ e_pixmap_file (const char *filename) return ret; } + g_free (edir); /* Fall back to the gnome_pixmap_file */ return gnome_pixmap_file (filename); |