From 9143022e877a1b9b3527ed3b977ed131aa486d4f Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Sat, 27 Jan 2001 03:40:54 +0000 Subject: Fixed a crash that could happen when destroying a control without any ical component in it. svn path=/trunk/; revision=7846 --- calendar/gui/e-itip-control.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'calendar/gui/e-itip-control.c') diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index b72637137f..0fb6c4eef1 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -114,9 +114,10 @@ itip_control_destroy_cb (GtkObject *object, gtk_object_unref (GTK_OBJECT (priv->xml)); gtk_object_unref (GTK_OBJECT (priv->xml2)); - icalcomponent_remove_component (priv->main_comp, priv->comp); - if (priv->main_comp != NULL) { + if (priv->comp != NULL) + icalcomponent_remove_component (priv->main_comp, priv->comp); + icalcomponent_free (priv->main_comp); } -- cgit v1.2.3