diff options
Diffstat (limited to 'calendar/gui/e-meeting-list-view.c')
-rw-r--r-- | calendar/gui/e-meeting-list-view.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c index f36d5b9485..b645c70c21 100644 --- a/calendar/gui/e-meeting-list-view.c +++ b/calendar/gui/e-meeting-list-view.c @@ -850,7 +850,10 @@ name_selector_dialog_close_cb (ENameSelectorDialog *dialog, gint response, gpoin e_name_selector_model_peek_section (name_selector_model, sections [i], NULL, &destination_store); - g_assert (destination_store); + if (!destination_store) { + g_warning ("destination store is NULL\n"); + continue; + } destinations = e_destination_store_list_destinations (destination_store); process_section (view, destinations, roles [i], &la); |