From f7f49da17ca1352bd86b903d7bac448c3c5174e3 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Wed, 16 Jul 2014 15:52:33 +0200 Subject: Initialize linked list for recurrent items When switching to the generic linked list implementation for recurring events in 9fab248 (Use generic lists for recurring apointments and events., 2011-04-16), no initialization routine for the list of recurring events was added. Fix this and properly initialize the list on startup. Signed-off-by: Lukas Fleischer --- src/calcurse.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/calcurse.c') diff --git a/src/calcurse.c b/src/calcurse.c index b128dbd..389334d 100644 --- a/src/calcurse.c +++ b/src/calcurse.c @@ -518,6 +518,7 @@ int main(int argc, char **argv) /* Initialize non-thread-safe data structures. */ event_llist_init(); + recur_event_llist_init(); todo_init_list(); /* -- cgit v1.2.3-54-g00ecf