diff options
author | Dan Winship <danw@src.gnome.org> | 2001-09-28 23:33:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-09-28 23:33:45 +0800 |
commit | 0e524f3ed0844843dfd04f6a72c469fd02493457 (patch) | |
tree | 3a6f7bcc4b14d2a7dfcd8a0356327b45be7bd006 /mail/mail-format.c | |
parent | 59eb8e34ef6494dd612671bde8c14dfdf0fef958 (diff) | |
download | gsoc2013-evolution-0e524f3ed0844843dfd04f6a72c469fd02493457.tar.gz gsoc2013-evolution-0e524f3ed0844843dfd04f6a72c469fd02493457.tar.zst gsoc2013-evolution-0e524f3ed0844843dfd04f6a72c469fd02493457.zip |
Deal with camel_mime_filter_charset_new_convert returning NULL. (Every
* mail-format.c (get_data_wrapper_text): Deal with
camel_mime_filter_charset_new_convert returning NULL. (Every other
call to it does, and something's wrong with iconv on the Sun right
now so it keeps failing.)
svn path=/trunk/; revision=13214
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 72c470fd42..a82f249267 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1061,8 +1061,10 @@ get_data_wrapper_text (CamelDataWrapper *wrapper) charset = mail_config_get_default_charset (); filter = camel_mime_filter_charset_new_convert (charset, "utf-8"); - camel_stream_filter_add (filtered_stream, CAMEL_MIME_FILTER (filter)); - camel_object_unref (CAMEL_OBJECT (filter)); + if (filter) { + camel_stream_filter_add (filtered_stream, CAMEL_MIME_FILTER (filter)); + camel_object_unref (CAMEL_OBJECT (filter)); + } } camel_data_wrapper_write_to_stream (wrapper, CAMEL_STREAM (filtered_stream)); |