diff options
-rw-r--r-- | mail/e-mail-store.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/e-mail-store.c b/mail/e-mail-store.c index 46f02705fc..af602b1a81 100644 --- a/mail/e-mail-store.c +++ b/mail/e-mail-store.c @@ -406,7 +406,10 @@ e_mail_store_foreach (GHFunc func, gpointer key, value; g_return_if_fail (func != NULL); - g_return_if_fail (store_table != NULL); + + /* case when started in other than mailer component and closing evolution */ + if (!store_table) + return; g_hash_table_iter_init (&iter, store_table); |