aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-view.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-04-17 18:03:00 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-04-17 18:03:00 +0800
commitb24bdfcc8d3e43499f1e81351f69ac667cedd08a (patch)
treee5054640133d02ad0a6d13d32f8950596d7fcbcc /calendar/gui/e-calendar-view.c
parent1314ec2abd937d9658eba075253e94e93fb5ca9e (diff)
downloadgsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar.gz
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar.bz2
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar.lz
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar.xz
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.tar.zst
gsoc2013-evolution-b24bdfcc8d3e43499f1e81351f69ac667cedd08a.zip
** Fix for bug #523402
2008-04-17 Milan Crha <mcrha@redhat.com> ** Fix for bug #523402 * gui/e-calendar-view.c: (e_calendar_view_add_event): Do not free value returned by icaltimezone_get_tzid. svn path=/trunk/; revision=35376
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r--calendar/gui/e-calendar-view.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c
index 3e05333ee5..5bb0b1a63a 100644
--- a/calendar/gui/e-calendar-view.c
+++ b/calendar/gui/e-calendar-view.c
@@ -366,11 +366,13 @@ e_calendar_view_add_event (ECalendarView *cal_view, ECal *client, time_t dtstart
e_cal_component_get_dtstart (comp, &dt);
dt.tzid = icaltimezone_get_tzid (default_zone);
e_cal_component_set_dtstart (comp, &dt);
+ dt.tzid = NULL;
e_cal_component_free_datetime (&dt);
e_cal_component_get_dtend (comp, &dt);
dt.tzid = icaltimezone_get_tzid (default_zone);
e_cal_component_set_dtend (comp, &dt);
+ dt.tzid = NULL;
e_cal_component_free_datetime (&dt);
e_cal_component_commit_sequence (comp);