Use p_new instead of xmalloc()
[apps/madmutt.git] / buffy.c
diff --git a/buffy.c b/buffy.c
index 4e21059..2aaa494 100644 (file)
--- a/buffy.c
+++ b/buffy.c
@@ -41,7 +41,7 @@ int buffy_lookup(const char* path)
 {
     int i;
 
-    if (!path || !*path)
+    if (m_strisempty(path))
         return -1;
 
     for (i = 0; i < Incoming.len; i++) {
@@ -64,7 +64,7 @@ int buffy_parse_mailboxes(BUFFER *path, BUFFER *s, unsigned long data,
         mutt_extract_token(path, s, 0);
         m_strcpy(buf, sizeof(buf), path->data);
 
-        if (data == M_UNMAILBOXES && !strcmp(buf, "*")) {
+        if (data == M_UNMAILBOXES && !m_strcmp(buf, "*")) {
             buffy_array_wipe(&Incoming);
             return 0;
         }