From 788b153bc5b08f13f655df52f50095c61a6f1537 Mon Sep 17 00:00:00 2001 From: Milan Crha Date: Thu, 13 Jan 2011 09:20:36 +0100 Subject: Runtime warning when closing without using mailer --- mail/e-mail-store.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mail/e-mail-store.c') 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); -- cgit