diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/itip-utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 3819751320..c3e0711459 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2008-10-31 Matthew Barnes <mbarnes@redhat.com> + + * gui/itip-utils.c (itip_send_comp): + Fix a crash when selecting "Forward as iCalendar". + 2008-10-30 Matthew Barnes <mbarnes@redhat.com> * gui/control-factory.c: diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index e72490f443..5a954b5ff9 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -1207,7 +1207,7 @@ itip_send_comp (ECalComponentItipMethod method, ECalComponent *send_comp, description = comp_description (comp); body = camel_text_to_html ( - body, CAMEL_MIME_FILTER_TOHTML_PRE, 0); + description, CAMEL_MIME_FILTER_TOHTML_PRE, 0); e_msg_composer_set_body_text (composer, body, -1); g_free (body); |