aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorSuman Manjunath <msuman@src.gnome.org>2008-08-18 13:14:43 +0800
committerSuman Manjunath <msuman@src.gnome.org>2008-08-18 13:14:43 +0800
commit2e2cef24bc9275c29d013cdcee6517d921d26c15 (patch)
tree1b2f4b3b5b3b0dbd029169924b836492f128b142 /calendar/gui
parenta763c26876c7e56401452f76e1d372bb945aa8b7 (diff)
downloadgsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar.gz
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar.bz2
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar.lz
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar.xz
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.tar.zst
gsoc2013-evolution-2e2cef24bc9275c29d013cdcee6517d921d26c15.zip
Milan Crha <mcrha@redhat.com> ** Part of fix for bug #462242 (Do not unref NULL pointers).
svn path=/trunk/; revision=36011
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/gnome-cal.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index d2fd8f551b..4d65f094b8 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -2870,7 +2870,8 @@ default_client_cal_opened_cb (ECal *ecal, ECalendarStatus status, GnomeCalendar
g_hash_table_remove (priv->clients[source_type], e_source_peek_uid (source));
/* FIXME Is there a better way to handle this? */
- g_object_unref (priv->default_client[source_type]);
+ if (priv->default_client[source_type])
+ g_object_unref (priv->default_client[source_type]);
priv->default_client[source_type] = NULL;
g_signal_emit (gcal, gnome_calendar_signals[SOURCE_REMOVED], 0, source_type, source);