aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/task-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/task-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/task-editor.c')
-rw-r--r--calendar/gui/dialogs/task-editor.c22
1 files changed, 18 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index 8cc4cb0113..b28814f18e 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -315,11 +315,25 @@ task_editor_finalize (GObject *object)
te = TASK_EDITOR (object);
priv = te->priv;
- g_object_unref (priv->task_page);
- g_object_unref (priv->task_details_page);
- g_object_unref (priv->meet_page);
+ if (priv->task_page) {
+ g_object_unref (priv->task_page);
+ priv->task_page = NULL;
+ }
+
+ if (priv->task_details_page) {
+ g_object_unref (priv->task_details_page);
+ priv->task_details_page = NULL;
+ }
- g_object_unref (priv->model);
+ if (priv->meet_page) {
+ g_object_unref (priv->meet_page);
+ priv->meet_page = NULL;
+ }
+
+ if (priv->model) {
+ g_object_unref (priv->model);
+ priv->model = NULL;
+ }
g_free (priv);