diff options
author | Jesse Pavel <jpavel@src.gnome.org> | 2000-12-01 04:00:30 +0800 |
---|---|---|
committer | Jesse Pavel <jpavel@src.gnome.org> | 2000-12-01 04:00:30 +0800 |
commit | 042427ffe22c81d6c38d021cdd66e38a5e550d1e (patch) | |
tree | 61414f71085456eb213b485a9988333f01188d70 | |
parent | 24fdc5f5968e13dcc0501aac8b21d49e616fe5b3 (diff) | |
download | gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar.gz gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar.bz2 gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar.lz gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar.xz gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.tar.zst gsoc2013-evolution-042427ffe22c81d6c38d021cdd66e38a5e550d1e.zip |
fixed a bug that caused the calendar to segfault when the iTip control was
* gui/e-itip-control.c: fixed a bug that caused the calendar to
segfault when the iTip control was destroyed.
svn path=/trunk/; revision=6741
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-itip-control.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index cd96b9f05f..d135526623 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-11-30 Jesse Pavel <jpavel@helixcode.com> + + * gui/e-itip-control.c: fixed a bug that caused the calendar to + segfault when the iTip control was destroyed. + 2000-11-30 JP Rosevear <jpr@helixcode.com> * conduits/calendar/calendar-conduit.c (local_record_from_comp): Empty diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index d3a6a35311..476853c707 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -103,10 +103,13 @@ 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) { icalcomponent_free (priv->main_comp); } + if (priv->cal_comp != NULL) { gtk_object_unref (GTK_OBJECT (priv->cal_comp)); } |