aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/event-editor.c
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchenthill@novell.com>2005-03-21 23:34:37 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-03-21 23:34:37 +0800
commitf867fb4644ed8b90b5dc64b04782ccced3824c91 (patch)
tree1f3c42aace54c8b1b84122f5c2e6c57576dab12e /calendar/gui/dialogs/event-editor.c
parenta28310cfb08a82b540cba718bd16f8a1264b549b (diff)
downloadgsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar.gz
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar.bz2
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar.lz
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar.xz
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.tar.zst
gsoc2013-evolution-f867fb4644ed8b90b5dc64b04782ccced3824c91.zip
Fixes #73031
2005-03-21 Chenthill Palanisamy <pchenthill@novell.com> Fixes #73031 * gui/dialogs/event-editor.c: (event_editor_finalize): * gui/dialogs/task-editor.c: (task_editor_finalize): Added a check for the presence of the object before unreffing it. svn path=/trunk/; revision=29076
Diffstat (limited to 'calendar/gui/dialogs/event-editor.c')
-rw-r--r--calendar/gui/dialogs/event-editor.c28
1 files changed, 23 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index 785fe5c357..5f46bb1222 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -332,12 +332,30 @@ event_editor_finalize (GObject *object)
ee = EVENT_EDITOR (object);
priv = ee->priv;
- g_object_unref (priv->event_page);
- g_object_unref (priv->recur_page);
- g_object_unref (priv->meet_page);
- g_object_unref (priv->sched_page);
+ if (priv->event_page) {
+ g_object_unref (priv->event_page);
+ priv->event_page = NULL;
+ }
+
+ if (priv->recur_page) {
+ g_object_unref (priv->recur_page);
+ priv->recur_page = NULL;
+ }
+
+ if (priv->meet_page) {
+ g_object_unref (priv->meet_page);
+ priv->meet_page = NULL;
+ }
+
+ if (priv->sched_page) {
+ g_object_unref (priv->sched_page);
+ priv->sched_page = NULL;
+ }
- g_object_unref (priv->model);
+ if (priv->model) {
+ g_object_unref (priv->model);
+ priv->model = NULL;
+ }
g_free (priv);