aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
authorSimon Zheng <simon.zheng@sun.com>2006-03-06 18:11:50 +0800
committerSimon Zheng <simonz@src.gnome.org>2006-03-06 18:11:50 +0800
commit4608ce31aea6c4ed83dfe4337d72ed2659ec85a6 (patch)
treee22f54d336576e16cc295a6a783b002df2f80bee /calendar/gui/dialogs
parente5a38f3232986b53ab64b01655aa5732aaa371a2 (diff)
downloadgsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar.gz
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar.bz2
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar.lz
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar.xz
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.tar.zst
gsoc2013-evolution-4608ce31aea6c4ed83dfe4337d72ed2659ec85a6.zip
Fixes #311482 As uri is encaped ASCII-encoded, it can't be recognized when
2006-03-06 Simon Zheng <simon.zheng@sun.com> Fixes #311482 * gui/dialogs/comp-editor.c: (set_attachment_list): As uri is encaped ASCII-encoded, it can't be recognized when setting mime part. Use filename instead of uri. svn path=/trunk/; revision=31657
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/comp-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 033d93ca7b..cc19b006f8 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -2297,7 +2297,6 @@ set_attachment_list (CompEditor *editor, GSList *attach_list)
camel_data_wrapper_construct_from_stream (wrapper, stream);
camel_data_wrapper_set_mime_type (wrapper, "application/octet-stream");
}
- g_free (file_name);
camel_object_unref (stream);
@@ -2307,12 +2306,13 @@ set_attachment_list (CompEditor *editor, GSList *attach_list)
camel_mime_part_set_disposition (part, "attachment");
- char *ptr = strstr (attach_filename, comp_uid);
+ char *ptr = strstr (file_name, comp_uid);
if (ptr) {
ptr += strlen(comp_uid);
if (*ptr++ == '-')
camel_mime_part_set_filename (part, ptr);
}
+ g_free (file_name);
e_attachment_bar_attach_mime_part ((EAttachmentBar *) editor->priv->attachment_bar, part);
e_expander_set_expanded (E_EXPANDER (editor->priv->attachment_expander), TRUE);