aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog6
-rw-r--r--calendar/gui/itip-utils.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index a699e1e758..ef061b0b42 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-30 Federico Mena Quintero <federico@ximian.com>
+
+ * gui/itip-utils.c (itip_send_comp): Allocate enough space for the
+ string! (was missing the null terminator) Possibly fixes #13924.
+ Thanks a *LOT* to Michael Zucchi for running this through Purify.
+
2001-10-30 JP Rosevear <jpr@ximian.com>
* gui/e-meeting-time-sel-item.c
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index e6be9ccef7..013787ee39 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -718,9 +718,9 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp)
ical_string = comp_string (method, comp);
attach_data = GNOME_Evolution_Composer_AttachmentData__alloc ();
- attach_data->_length = strlen (ical_string);
+ attach_data->_length = strlen (ical_string) + 1;
attach_data->_maximum = attach_data->_length;
- attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length);
+ attach_data->_buffer = CORBA_sequence_CORBA_char_allocbuf (attach_data->_length);
strcpy (attach_data->_buffer, ical_string);
GNOME_Evolution_Composer_attachData (composer_server,