svn path=/trunk/; revision=32591
This commit is contained in:
Chenthill Palanisamy
2006-08-19 10:50:26 +00:00
parent 28f6f97ef9
commit 6bc484b25b
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2006-08-18 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #343369
* gui/itip-utils.c: (append_cal_attachments):
Set the file name to empty string in its absence.
2006-08-17 Kjartan Maraas <kmaraas@gnome.org>
* gui/e-week-view-event-item.c:

View File

@ -1120,7 +1120,7 @@ append_cal_attachments (GNOME_Evolution_Composer composer_server, ECalComponent
for (l = attach_list; l ; l = l->next) {
mime_attach = (struct CalMimeAttach *) l->data;
filename = CORBA_string_dup (mime_attach->filename);
filename = CORBA_string_dup (mime_attach->filename ? mime_attach->filename : "");
content_type = CORBA_string_dup (mime_attach->content_type);
description = CORBA_string_dup (mime_attach->description);