diff options
author | Not Zed <NotZed@Ximian.com> | 2001-07-09 11:42:50 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-07-09 11:42:50 +0800 |
commit | f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2 (patch) | |
tree | 3ce38c38764ebd789adbb5375cb4a325ec295afc /camel/providers | |
parent | 864046c7e4c1af311fd1b26bf6120f543e64c9a0 (diff) | |
download | gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar.gz gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar.bz2 gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar.lz gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar.xz gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.tar.zst gsoc2013-evolution-f2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2.zip |
Oops, e_poolv_set free's it for us, so dont double-free here.
2001-07-09 Not Zed <NotZed@Ximian.com>
* providers/local/camel-maildir-summary.c (maildir_summary_sync):
Oops, e_poolv_set free's it for us, so dont double-free here.
svn path=/trunk/; revision=10902
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/local/camel-maildir-summary.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/camel/providers/local/camel-maildir-summary.c b/camel/providers/local/camel-maildir-summary.c index bc7bf790bd..315e45ffd6 100644 --- a/camel/providers/local/camel-maildir-summary.c +++ b/camel/providers/local/camel-maildir-summary.c @@ -741,7 +741,6 @@ maildir_summary_sync(CamelLocalSummary *cls, gboolean expunge, CamelFolderChange #else # ifdef DOEPOOLV info->strings = e_poolv_set(info->strings, CAMEL_MAILDIR_INFO_FILENAME, newname, TRUE); - g_free(newname); # else g_free(mdi->filename); mdi->filename = newname; |