aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-utils.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-28 00:41:55 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-28 00:41:55 +0800
commita58cd1586cbdd63b5b7d929fd85babbe375b6d9f (patch)
tree9234d36a077867522aefeaf09f881a2fee648895 /camel/camel-mime-utils.c
parent34c8a93e525ad08d6a333a8c8178d21adb5cd424 (diff)
downloadgsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar.gz
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar.bz2
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar.lz
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar.xz
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.tar.zst
gsoc2013-evolution-a58cd1586cbdd63b5b7d929fd85babbe375b6d9f.zip
Fix the fix that fixes broken mailer behavior. We want to make sure that
2001-07-27 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-utils.c (header_decode_param): Fix the fix that fixes broken mailer behavior. We want to make sure that the user's locale charset is non-NULL before we pass it off to iconv_open(). If it *is* NULL, we want to use iso-8859-1. svn path=/trunk/; revision=11448
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r--camel/camel-mime-utils.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c
index 8116829b7f..d4c9b1f8fc 100644
--- a/camel/camel-mime-utils.c
+++ b/camel/camel-mime-utils.c
@@ -1975,14 +1975,15 @@ header_decode_param (const char **in, char **paramp, char **valuep, int *is_rfc2
* attempt to save it by assuming it's in the user's
* locale and converting to utf8 */
char *outbase, *outbuf, *p;
- const char *inbuf;
+ const char *charset, *inbuf;
int inlen, outlen;
iconv_t ic;
inbuf = value;
inlen = strlen (inbuf);
- ic = iconv_open ("UTF-8", camel_charset_locale_name ());
+ charset = camel_charset_locale_name ();
+ ic = iconv_open ("UTF-8", charset ? charset : "ISO-8859-1");
if (ic != (iconv_t) -1) {
int ret;