aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-12-09 04:55:10 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-12-09 04:55:10 +0800
commit3df2257e016793b56ab81107ef61beecf2ced330 (patch)
tree8fb52cf6b37b3537b7798bdf23810d474e3842cf /calendar/gui
parent74d651e09e4af21f3744b2c271fbc5c6332cc5b9 (diff)
downloadgsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar.gz
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar.bz2
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar.lz
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar.xz
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.tar.zst
gsoc2013-evolution-3df2257e016793b56ab81107ef61beecf2ced330.zip
Free the dates we get from the component.
2000-12-08 Federico Mena Quintero <federico@helixcode.com> * gui/event-editor.c (fill_widgets): Free the dates we get from the component. svn path=/trunk/; revision=6867
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/event-editor.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index 97daa77fce..0d98d75d24 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -1807,8 +1807,11 @@ fill_widgets (EventEditor *ee)
so we have to subtract a day so we only show the 2nd. */
cal_component_get_dtstart (priv->comp, &d);
dtstart = icaltime_as_timet (*d.value);
+ cal_component_free_datetime (&d);
+
cal_component_get_dtend (priv->comp, &d);
dtend = icaltime_as_timet (*d.value);
+ cal_component_free_datetime (&d);
if (time_day_begin (dtstart) == dtstart
&& time_day_begin (dtend) == dtend) {