diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-03-22 19:44:56 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-03-22 19:44:56 +0800 |
commit | f77c67c998bfbb0d8f9385ce7f587a65214ffc7f (patch) | |
tree | 570a8114d7541e8088396c5bae10f050d61078b6 /calendar/gui/e-cal-model.c | |
parent | 08e699390975c29d7fbfb47500ada01a4de91d91 (diff) | |
download | gsoc2013-evolution-f77c67c998bfbb0d8f9385ce7f587a65214ffc7f.tar.gz gsoc2013-evolution-f77c67c998bfbb0d8f9385ce7f587a65214ffc7f.tar.zst gsoc2013-evolution-f77c67c998bfbb0d8f9385ce7f587a65214ffc7f.zip |
Fixes #330842
svn path=/trunk/; revision=31739
Diffstat (limited to 'calendar/gui/e-cal-model.c')
-rw-r--r-- | calendar/gui/e-cal-model.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 3ef8ba6e47..6d5d5ea0b1 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -1359,7 +1359,12 @@ e_cal_view_objects_added_cb (ECalView *query, GList *objects, gpointer user_data ECalComponent *comp = e_cal_component_new (); ECal *client = e_cal_view_get_client (query); - e_cal_component_set_icalcomponent (comp, icalcomponent_new_clone (l->data)); + /* This will fail for alarm or VCalendar component */ + if (!e_cal_component_set_icalcomponent (comp, icalcomponent_new_clone (l->data))) { + g_object_unref (comp); + continue; + } + id = e_cal_component_get_id (comp); /* remove the components if they are already present and re-add them */ |