aboutsummaryrefslogtreecommitdiffstats
path: root/camel
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2001-07-09 11:42:50 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-07-09 11:42:50 +0800
commitf2f3c4bf7f73b50d09b3dee5d87da8b25aae3bc2 (patch)
tree3ce38c38764ebd789adbb5375cb4a325ec295afc /camel
parent864046c7e4c1af311fd1b26bf6120f543e64c9a0 (diff)
downloadgsoc2013-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')
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/providers/local/camel-maildir-summary.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index f3a37af6f2..c2145b3344 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
2001-07-06 Not Zed <NotZed@Ximian.com>
* camel-vee-folder.c (camel_vee_folder_finalise): Changed so we
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;