X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=pattern.c;h=7d7086897a0610bc8ab3174cae077324b3e93746;hp=7144c51b389288ed6ad1c0df08048608d5f68641;hb=c5f843d96b3889ba116e4b704e457a00bee63cb9;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/pattern.c b/pattern.c index 7144c51..7d70868 100644 --- a/pattern.c +++ b/pattern.c @@ -12,11 +12,15 @@ #endif #include "mutt.h" +#include "mx.h" #include "mapping.h" #include "keymap.h" -#include "mailbox.h" #include "copy.h" +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" + #include #include #include @@ -762,7 +766,7 @@ pattern_t *mutt_pattern_comp ( /* const */ char *s, int flags, BUFFER * err) return NULL; } /* compile the sub-expression */ - buf = mutt_substrdup (ps.dptr + 1, p); + buf = str_substrdup (ps.dptr + 1, p); if ((tmp = mutt_pattern_comp (buf, flags, err)) == NULL) { FREE (&buf); mutt_pattern_free (&curlist); @@ -1214,7 +1218,7 @@ int mutt_pattern_func (int op, char *prompt) } #endif } - else if (mutt_strncmp (buf, "~A", 2) != 0) { + else if (safe_strncmp (buf, "~A", 2) != 0) { Context->pattern = simple; simple = NULL; /* don't clobber it */ Context->limit_pattern = mutt_pattern_comp (buf, M_FULL_MSG, &err);