From 4737f9780ccce5fcf5c61f63bec2a695e3a6071d Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Fri, 16 Jan 2004 20:46:53 +0000 Subject: we actually want to not return on any error as well (like NOT FOUND) 2004-01-16 JP Rosevear * gui/e-itip-control.c (find_server): we actually want to not return on any error as well (like NOT FOUND) svn path=/trunk/; revision=24285 --- calendar/gui/e-itip-control.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'calendar/gui') diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index 83f6abf2d2..5823ad7cbe 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -188,14 +188,20 @@ find_server (EItipControl *itip, ECalComponent *comp) ESource *source; ECal *ecal; icalcomponent *icalcomp; + GError *error = NULL; source = m->data; ecal = start_calendar_server (itip, source, priv->type); - if (ecal && e_cal_get_object (ecal, uid, NULL, &icalcomp, NULL)) { - icalcomponent_free (icalcomp); - - return ecal; + if (ecal && e_cal_get_object (ecal, uid, NULL, &icalcomp, &error)) { + if (error && error->code == E_CALENDAR_STATUS_OK) { + icalcomponent_free (icalcomp); + g_error_free (error); + + return ecal; + } + + g_clear_error (&error); } } } -- cgit