From ca50d9fad97731aefa9bca4075ba6f655c6e742e Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Wed, 15 Apr 1998 06:37:34 +0000 Subject: Routine to destory rows array properly. 1998-04-15 Miguel de Icaza * gncal-full-day.c (layout_kill_rows): Routine to destory rows array properly. * gncal-year-view.c (gncal_year_view_new): Add missing year in call to strftime. * calobj.c (ical_object_create_from_vobject): Fixed memory leaks from the return values of versit's fakeCString. svn path=/trunk/; revision=136 --- calendar/gui/year-view.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'calendar/gui/year-view.c') diff --git a/calendar/gui/year-view.c b/calendar/gui/year-view.c index d4c2d218df..a3ae3ce647 100644 --- a/calendar/gui/year-view.c +++ b/calendar/gui/year-view.c @@ -101,7 +101,8 @@ gncal_year_view_new (int year) (gpointer *) yview); my_tm.tm_mon = i; - strftime(monthbuff, 40, "%B", &my_tm); + my_tm.tm_year = year; + strftime(monthbuff, sizeof (monthbuff)-1, "%B", &my_tm); label = gtk_label_new(monthbuff); gtk_container_add(GTK_CONTAINER(frame), vbox); -- cgit v1.2.3