From 5438b275894ae095116ef0312cc687da09de248d Mon Sep 17 00:00:00 2001 From: Peter Williams Date: Thu, 5 Jul 2001 14:37:54 +0000 Subject: Clear the shell view label if mailer loses focus. 2001-07-05 Peter Williams * mail-folder-cache.c (mail_folder_cache_set_folder_browser): Clear the shell view label if mailer loses focus. * mail-ops.c (do_update_subfolders_rec): Check for NULL url before calling folder cache functions. svn path=/trunk/; revision=10804 --- mail/mail-ops.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'mail/mail-ops.c') diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5f6dd7f2e2..1ca74631d0 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -363,10 +363,12 @@ do_update_subfolders_rec (CamelStore *store, CamelFolderInfo *info, EvolutionSto { char *path; - /* info->url == URI??? */ - mail_folder_cache_set_update_estorage (info->url, storage); - mail_folder_cache_note_folderinfo (info->url, info); - + if (info->url) { + /* info->url == URI??? */ + mail_folder_cache_set_update_estorage (info->url, storage); + mail_folder_cache_note_folderinfo (info->url, info); + } + path = g_strdup_printf("%s/%s", prefix, info->name); if (info->child) -- cgit v1.2.3