From 8ab52c05d984af14cf5583ebd19883a9d0ec1b98 Mon Sep 17 00:00:00 2001 From: 4 Date: Mon, 24 Sep 2001 21:27:21 +0000 Subject: In the 'lose' case, free messages, not fetch_data twice! 2001-09-24 * providers/imap/camel-imap-folder.c (imap_update_summary): In the 'lose' case, free messages, not fetch_data twice! svn path=/trunk/; revision=13101 --- camel/ChangeLog | 3 +++ camel/providers/imap/camel-imap-folder.c | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index c09a7c62ae..fc02246f57 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2001-09-24 + * providers/imap/camel-imap-folder.c (imap_update_summary): In the + 'lose' case, free messages, not fetch_data twice! + * camel-filter-search.c (check_header): If the type is encoded, get the fallback charset from the message content-type. diff --git a/camel/providers/imap/camel-imap-folder.c b/camel/providers/imap/camel-imap-folder.c index 5d2a8ba146..be0be6575d 100644 --- a/camel/providers/imap/camel-imap-folder.c +++ b/camel/providers/imap/camel-imap-folder.c @@ -1792,7 +1792,7 @@ imap_update_summary (CamelFolder *folder, int exists, if (messages->pdata[i]) camel_folder_summary_info_free (folder->summary, messages->pdata[i]); } - g_ptr_array_free (fetch_data, TRUE); + g_ptr_array_free (messages, TRUE); } } -- cgit v1.2.3