X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Futil.c;h=e6c101c7e771b4df6a7d68166899a3d1ac70741e;hb=0f44dc85fc1280372ffab911d701e703d803fb4b;hp=9a632a5a16cba7185c6a4dbcca776113ae1aaf72;hpb=1106413431b72d14d6f1208d611c489931ea4499;p=apps%2Fmadmutt.git diff --git a/imap/util.c b/imap/util.c index 9a632a5..e6c101c 100644 --- a/imap/util.c +++ b/imap/util.c @@ -178,12 +178,12 @@ void imap_pretty_mailbox (char *path) if (imap_parse_path (path, &target) < 0) return; - tlen = mutt_strlen (target.mbox); + tlen = safe_strlen (target.mbox); /* check whether we can do '=' substitution */ if (mx_is_imap (Maildir) && !imap_parse_path (Maildir, &home)) { - hlen = mutt_strlen (home.mbox); + hlen = safe_strlen (home.mbox); if (tlen && mutt_account_match (&home.account, &target.account) && - !mutt_strncmp (home.mbox, target.mbox, hlen)) { + !safe_strncmp (home.mbox, target.mbox, hlen)) { if (!hlen) home_match = 1; else @@ -489,7 +489,7 @@ void imap_unmunge_mbox_name (char *s) buf = safe_strdup (s); if (buf) { imap_utf7_decode (&buf); - strncpy (s, buf, mutt_strlen (s)); + strncpy (s, buf, safe_strlen (s)); } FREE (&buf);