diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-10-31 04:19:42 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-10-31 04:19:42 +0800 |
commit | efe4fc5ee64497b27cef6aff8d573cafe6f418a3 (patch) | |
tree | 7247ad8c7f0f22605c92bf18578d243a884b7e42 /calendar/gui/itip-utils.c | |
parent | 6922ceef9e0b05a3329ca0e7cfcbca68e29f9144 (diff) | |
download | gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar.gz gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar.bz2 gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar.lz gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar.xz gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.tar.zst gsoc2013-evolution-efe4fc5ee64497b27cef6aff8d573cafe6f418a3.zip |
Allocate enough space for the string! (was missing the null terminator)
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.
svn path=/trunk/; revision=14477
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r-- | calendar/gui/itip-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, |