aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/itip-utils.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-10-31 07:43:36 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-10-31 07:43:36 +0800
commit30a5a8360b245210cf23980cb37f1632dff7087f (patch)
tree9e4f0e12e8fa6a8fe97ba9e99c152e8a191270ac /calendar/gui/itip-utils.c
parentd0b753cecba2b0b41ede537c7a386e92940a01ba (diff)
downloadgsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar.gz
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar.bz2
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar.lz
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar.xz
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.tar.zst
gsoc2013-evolution-30a5a8360b245210cf23980cb37f1632dff7087f.zip
don't overwrite memory (e_meeting_time_selector_on_end_time_changed):
2001-10-30 JP Rosevear <jpr@ximian.com> * gui/e-meeting-time-sel.c (e_meeting_time_selector_on_start_time_changed): don't overwrite memory (e_meeting_time_selector_on_end_time_changed): ditto svn path=/trunk/; revision=14506
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r--calendar/gui/itip-utils.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c
index 013787ee39..454f18a75c 100644
--- a/calendar/gui/itip-utils.c
+++ b/calendar/gui/itip-utils.c
@@ -323,6 +323,12 @@ comp_subject (CalComponent *comp)
}
static CORBA_char *
+comp_body (CalComponent *comp)
+{
+ return CORBA_string_dup ("");
+}
+
+static CORBA_char *
comp_content_type (CalComponentItipMethod method)
{
char tmp[256];
@@ -673,7 +679,7 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp)
GNOME_Evolution_Composer_RecipientList *to_list = NULL;
GNOME_Evolution_Composer_RecipientList *cc_list = NULL;
GNOME_Evolution_Composer_RecipientList *bcc_list = NULL;
- CORBA_char *subject = NULL, *content_type = NULL;
+ CORBA_char *body = NULL, *subject = NULL, *content_type = NULL;
CORBA_char *filename = NULL, *description = NULL;
GNOME_Evolution_Composer_AttachmentData *attach_data = NULL;
CORBA_boolean show_inline;
@@ -710,6 +716,9 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp)
goto cleanup;
}
+ /* Body of the message */
+ body = comp_body (comp);
+
/* Content type, suggested file name, description */
content_type = comp_content_type (method);
filename = comp_filename (comp);
@@ -758,6 +767,8 @@ itip_send_comp (CalComponentItipMethod method, CalComponent *send_comp)
if (subject != NULL)
CORBA_free (subject);
+ if (body != NULL)
+ CORBA_free (body);
if (content_type != NULL)
CORBA_free (content_type);
if (filename != NULL)