Rocco Rutte:
[apps/madmutt.git] / imap / utf7.c
index 0941b83..b6a838d 100644 (file)
@@ -233,7 +233,7 @@ void imap_utf7_encode (char **s)
     char *t = safe_strdup (*s);
 
     if (!mutt_convert_string (&t, Charset, "UTF-8", 0))
-      utf8_to_utf7 (t, strlen (t), s, 0);
+      utf8_to_utf7 (t, mutt_strlen (t), s, 0);
     FREE (&t);
   }
 }
@@ -241,7 +241,7 @@ void imap_utf7_encode (char **s)
 void imap_utf7_decode (char **s)
 {
   if (Charset) {
-    char *t = utf7_to_utf8 (*s, strlen (*s), 0, 0);
+    char *t = utf7_to_utf8 (*s, mutt_strlen (*s), 0, 0);
 
     if (t && !mutt_convert_string (&t, "UTF-8", Charset, 0)) {
       FREE (s);