GNOME Bugzilla – Bug 736002
Crash in year view
Last modified: 2017-04-17 18:20:40 UTC
+ Trace 234048
126 gcal_dup_icaltime (const icaltimetype *date) 127 { 128 icaltimetype *new_date; 129 130 new_date= g_new (icaltimetype, 1); 131 new_date->year = date->year; 132 new_date->month = date->month; 133 new_date->day = date->day; 134 new_date->hour = date->hour; 135 new_date->minute = date->minute; (gdb) p new_date $1 = (icaltimetype *) 0xba3e40 (gdb) p date $2 = (const icaltimetype *) 0x0
This happens when an event has no end date. Google uses start date as the end date if there is no end date, which we should also do. Erick is looking into fixing the event not showing up in the calendar if the length is 0 seconds.
Fixed. Pushed: e58959d851e2fa1f0c5bcf49ce66631c203e15c0