diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2010-08-24 08:08:20 +0800 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-08-24 08:08:20 +0800 |
commit | 31167489b95237c31d37d1d4c6874376d0873c51 (patch) | |
tree | cc4c9a819389ed6d52551f5476322ba7fb39e864 | |
parent | 7c1ec3723ad7367449c93e8559c27158b24a51dd (diff) | |
download | gsoc2013-evolution-31167489b95237c31d37d1d4c6874376d0873c51.tar.gz gsoc2013-evolution-31167489b95237c31d37d1d4c6874376d0873c51.tar.zst gsoc2013-evolution-31167489b95237c31d37d1d4c6874376d0873c51.zip |
Bug 627598 - Memory leak in emf_format_clone()
-rw-r--r-- | em-format/em-format.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/em-format/em-format.c b/em-format/em-format.c index d978f157c5..9873a84ea3 100644 --- a/em-format/em-format.c +++ b/em-format/em-format.c @@ -132,6 +132,7 @@ emf_finalize (GObject *object) g_free(emf->charset); g_free (emf->default_charset); g_string_free(emf->part_id, TRUE); + g_free(emf->uid); /* FIXME: check pending jobs */ |