aboutsummaryrefslogtreecommitdiff
path: root/src/unmime.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-22 07:37:01 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-22 07:37:01 +0000
commitf0314c16b1392a2021874136f80fd9350f16fe84 (patch)
tree2f46062c8e00fc907b835417724a6739bb96aba2 /src/unmime.c
parent951ba1bd0fd5582c507a807b5fe0dd8454b5271c (diff)
made error check strict on Japanese code conversion.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@185 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'src/unmime.c')
-rw-r--r--src/unmime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unmime.c b/src/unmime.c
index fedf44f4..23d787a3 100644
--- a/src/unmime.c
+++ b/src/unmime.c
@@ -117,7 +117,7 @@ gchar *unmime_header(const gchar *encoded_str)
/* convert to UTF-8 */
conv_str = conv_codeset_strdup(decoded_text, charset, NULL);
if (!conv_str)
- conv_str = conv_utf8todisp(decoded_text);
+ conv_str = conv_utf8todisp(decoded_text, NULL);
g_string_append(outbuf, conv_str);
g_free(conv_str);