From: Andrej Kacian Date: Tue, 13 Sep 2016 09:45:22 +0000 (+0200) Subject: More fixes for vcalendar crash on 64-bit arch. X-Git-Tag: 3.14.1~57 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=c0dc565cf9e6709a671fbfee0d43a7bc2fab94ba More fixes for vcalendar crash on 64-bit arch. Same issue as in commit d20742e, different place. This should be the last one, though. --- diff --git a/src/plugins/vcalendar/vcal_manager.c b/src/plugins/vcalendar/vcal_manager.c index 017aa8c44..b22947cd5 100644 --- a/src/plugins/vcalendar/vcal_manager.c +++ b/src/plugins/vcalendar/vcal_manager.c @@ -448,7 +448,7 @@ gchar *vcal_manager_event_dump(VCalEvent *event, gboolean is_reply, gboolean is_ ICAL_ROLE_REQPARTICIPANT), icalparameter_new_rsvp(ICAL_RSVP_TRUE), icalparameter_new_partstat(status), - 0 + (void*)0 ); icalcomponent_add_property(ievent, attprop); } else { @@ -470,7 +470,7 @@ gchar *vcal_manager_event_dump(VCalEvent *event, gboolean is_reply, gboolean is_ icalparameter_new_rsvp(ICAL_RSVP_TRUE), icalparameter_new_cutype(a->cutype), icalparameter_new_partstat(a->answer), - 0 + (void*)0 ); icalcomponent_add_property(ievent, attprop);