diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-component.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 47bff4a411..6f2b9d7275 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2004-03-19 Not Zed <NotZed@Ximian.com> + + * mail-component.c (mail_component_remove_store): ref the store + before running the async disconnect, otherwise we unref one too + many times. + 2004-03-18 Jeffrey Stedfast <fejj@ximian.com> * mail-account-gui.c (mail_account_gui_setup): Don't set the diff --git a/mail/mail-component.c b/mail/mail-component.c index 73d178f47a..bb7c19979f 100644 --- a/mail/mail-component.c +++ b/mail/mail-component.c @@ -899,7 +899,8 @@ mail_component_remove_store (MailComponent *component, CamelStore *store) mail_note_store_remove (store); em_folder_tree_model_remove_store (priv->model, store); - + + camel_object_ref(store); mail_async_event_emit (priv->async_event, MAIL_ASYNC_THREAD, (MailAsyncFunc) store_disconnect, store, NULL, NULL); } |