X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Futf7.c;h=b6a838dbe5b79915d7eb6d0d37656d30b0487f71;hb=203e950e3d3c76795fa49895d040f732adad2049;hp=0941b835ec3312fe5a018e7c1c584261c9dc60e1;hpb=c3e57678c8be193fc137854020f3a90887be97c9;p=apps%2Fmadmutt.git diff --git a/imap/utf7.c b/imap/utf7.c index 0941b83..b6a838d 100644 --- a/imap/utf7.c +++ b/imap/utf7.c @@ -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);