aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/providers/local/camel-local-folder.c5
2 files changed, 8 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index c24472738a..75ad88d4ff 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -9,6 +9,11 @@
2003-05-13 Jeffrey Stedfast <fejj@ximian.com>
+ * providers/local/camel-local-folder.c (local_delete): Only delete
+ the index if it is non-NULL. Fixes bug #42763.
+
+2003-05-13 Jeffrey Stedfast <fejj@ximian.com>
+
* providers/imap/camel-imap-utils.c (imap_uid_array_to_set): Added
a note to the comment block for this function noting that uids
MUST be in sorted order.
diff --git a/camel/providers/local/camel-local-folder.c b/camel/providers/local/camel-local-folder.c
index ca49071d2e..74c876f226 100644
--- a/camel/providers/local/camel-local-folder.c
+++ b/camel/providers/local/camel-local-folder.c
@@ -442,8 +442,9 @@ static void
local_delete(CamelFolder *folder)
{
CamelLocalFolder *lf = (CamelLocalFolder *)folder;
-
- camel_index_delete(lf->index);
+
+ if (lf->index)
+ camel_index_delete(lf->index);
parent_class->delete(folder);
}