Improve feedback to user when bug #3349
authorRicardo Mones <ricardo@mones.org>
Wed, 17 Dec 2014 15:45:12 +0000 (16:45 +0100)
committerRicardo Mones <ricardo@mones.org>
Wed, 17 Dec 2014 16:08:15 +0000 (17:08 +0100)
src/codeconv.c
src/compose.c

index 98981e135f92daf3a64e33703d135382e47b19bc..85dabf61f61962fbfad932390ad108e4ef14463d 100644 (file)
@@ -749,8 +749,17 @@ gchar *conv_codeset_strdup(const gchar *inbuf,
        size_t len;
        CodeConvFunc conv_func;
 
-       if (!strcmp2(src_code, dest_code))
+       if (!strcmp2(src_code, dest_code)) {
+               CharSet dest_charset = conv_get_charset_from_str(dest_code);
+               if (dest_charset == C_UTF_8) {
+                       /* ensure valid UTF-8 if target is UTF-8 */
+                       if (!g_utf8_validate(inbuf, -1, NULL)) {
+                               return NULL;
+                       }
+               }
+               /* otherwise, try for a lucky day */
                return g_strdup(inbuf);
+       }
 
        src_code = conv_get_fallback_for_private_encoding(src_code);
        conv_func = conv_get_code_conv_func(src_code, dest_code);
index 8f89975584ded9060cdd7e66fc242a81cd8ed24d..03dbf485edffdcb959e65de230a7c070ca7f245c 100644 (file)
@@ -3643,9 +3643,18 @@ static ComposeInsertResult compose_insert_file(Compose *compose, const gchar *fi
 
                if (g_utf8_validate(buf, -1, NULL) == TRUE)
                        str = g_strdup(buf);
-               else
+               else {
                        str = conv_codeset_strdup
                                (buf, cur_encoding, CS_INTERNAL);
+                       if (!str) {
+                               alertpanel_error(_("Unable to insert the file "
+                               "because converting to the internal encoding "
+                               "failed. This may be caused by a binary file "
+                               "or a wrongly encoded text file. If you are "
+                               "sure this is the right file then try "
+                               "attaching it instead."));
+                       }
+               }
                if (!str) continue;
 
                /* strip <CR> if DOS/Windows file,