From e6e77f1fc333b12693989ccbbd9a432465c6ffd6 Mon Sep 17 00:00:00 2001 From: 0 Date: Tue, 30 Oct 2001 01:34:55 +0000 Subject: If we get an empty name, then mark that as NoSelect. Workaround fix for 2001-10-30 * providers/imap/camel-imap-store.c (parse_list_response_as_folder_info): If we get an empty name, then mark that as NoSelect. Workaround fix for #13239. svn path=/trunk/; revision=14392 --- camel/providers/imap/camel-imap-store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/providers/imap/camel-imap-store.c') diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c index ca5af7d3c9..1ef9b6edad 100644 --- a/camel/providers/imap/camel-imap-store.c +++ b/camel/providers/imap/camel-imap-store.c @@ -1387,7 +1387,7 @@ parse_list_response_as_folder_info (CamelImapStore *imap_store, return NULL; } } - + fi = g_new0 (CamelFolderInfo, 1); fi->full_name = dir; if (sep && name) @@ -1398,7 +1398,7 @@ parse_list_response_as_folder_info (CamelImapStore *imap_store, url = camel_url_new (imap_store->base_url, NULL); g_free (url->path); url->path = g_strdup_printf ("/%s", dir); - if (flags & IMAP_LIST_FLAG_NOSELECT) + if (flags & IMAP_LIST_FLAG_NOSELECT || fi->name[0] == 0) camel_url_set_param (url, "noselect", "yes"); fi->url = camel_url_to_string (url, 0); camel_url_free (url); -- cgit v1.2.3