X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Futf7.c;h=76ea6964c3edf33ec67a3e3c80722a62ef0dcfe5;hp=f4a84a15e69ef15b64d384563f7c27b9b0454024;hb=c98480f8568e6c1bc927c6c5f2b5e80b4aa6548c;hpb=617e7d83d14e14e6a520a48e75437211b16c8834 diff --git a/imap/utf7.c b/imap/utf7.c index f4a84a1..76ea696 100644 --- a/imap/utf7.c +++ b/imap/utf7.c @@ -232,7 +232,7 @@ bail: void imap_utf7_encode (char **s) { if (Charset) { - char *t = str_dup (*s); + char *t = m_strdup(*s); if (!mutt_convert_string (&t, Charset, "UTF-8", 0)) { char *u7 = utf8_to_utf7 (t, strlen (t), NULL, 0); @@ -246,7 +246,7 @@ void imap_utf7_encode (char **s) void imap_utf7_decode (char **s) { if (Charset) { - char *t = utf7_to_utf8 (*s, str_len (*s), 0, 0); + char *t = utf7_to_utf8 (*s, m_strlen(*s), 0, 0); if (t && !mutt_convert_string (&t, "UTF-8", Charset, 0)) { p_delete(s);