From 529ca53ef010a9d9d813e5c6510fc3c998ae0687 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Sun, 14 Dec 2003 23:57:08 +0000 Subject: set a proper exception if we fail 2003-12-14 JP Rosevear * gui/calendar-component.c (impl_requestCreateItem): set a proper exception if we fail 2003-12-14 JP Rosevear * gui/calendar-config.c (calendar_config_get_hide_completed_tasks_units): make sure the string is non-null before strcmp'ing it Fixes #52033 svn path=/trunk/; revision=23938 --- calendar/gui/calendar-config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'calendar/gui/calendar-config.c') diff --git a/calendar/gui/calendar-config.c b/calendar/gui/calendar-config.c index 3c12c381ac..fea9311b2c 100644 --- a/calendar/gui/calendar-config.c +++ b/calendar/gui/calendar-config.c @@ -622,9 +622,9 @@ calendar_config_get_hide_completed_tasks_units (void) units = gconf_client_get_string (config, CALENDAR_CONFIG_TASKS_HIDE_COMPLETED_UNITS, NULL); - if (!strcmp (units, "minutes")) + if (units && !strcmp (units, "minutes")) cu = CAL_MINUTES; - else if (!strcmp (units, "hours")) + else if (units && !strcmp (units, "hours")) cu = CAL_HOURS; else cu = CAL_DAYS; -- cgit v1.2.3