X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=sidebar.c;h=57043bac6f5006a6e1ffcd4457a85147061e3788;hp=5df3fd80da06a5e7112d0f88718b9c7e239e24c5;hb=6f41c52076e60ae7f2b6337b7dc9ea3fa23400e2;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d diff --git a/sidebar.c b/sidebar.c index 5df3fd8..57043ba 100644 --- a/sidebar.c +++ b/sidebar.c @@ -40,10 +40,14 @@ void calc_boundaries (int menu) if (list_empty(Incoming)) return; + if (CurBuffy < 0 || CurBuffy >= Incoming->length) + CurBuffy = 0; + if (TopBuffy < 0 || TopBuffy >= Incoming->length) + TopBuffy = 0; /* correct known_lines if it has changed because of a window resize */ /* if (known_lines != LINES) known_lines = LINES; */ - + lines = LINES - 2 - (menu != MENU_PAGER || option (OPTSTATUSONTOP)); known_lines = lines; if (option (OPTSIDEBARNEWMAILONLY)) { @@ -79,7 +83,7 @@ static char *shortened_hierarchy (char *box, int maxlen) if (last_dot) { ++last_dot; - new_box = safe_malloc (maxlen + 1); + new_box = mem_malloc (maxlen + 1); new_box[0] = box[0]; for (i = 1, j = 1; j < maxlen && i < len; ++i) { if (strchr (SidebarBoundary, box[i])) { @@ -189,6 +193,7 @@ int make_sidebar_entry (char* box, int idx, size_t len) #if USE_IMAP int l = str_len (ImapHomeNamespace); #endif + int l_m = str_len (Maildir); if (SidebarWidth > COLS) SidebarWidth = COLS; @@ -208,9 +213,13 @@ int make_sidebar_entry (char* box, int idx, size_t len) #if USE_IMAP if (l > 0 && str_ncmp (box, ImapHomeNamespace, l) == 0 && str_len (box) > l) - box += l + 1; + box += l + 1; /* we're trimming the ImapHomeNamespace, the "+ 1" is for the separator */ else #endif + if (l_m > 0 && str_ncmp (box, Maildir, l_m) == 0 && + str_len (box) > l_m) + box += l_m; + else box = basename (box); if (option (OPTSHORTENHIERARCHY) && str_len (box) > len-lencnt-1) { @@ -225,7 +234,7 @@ int make_sidebar_entry (char* box, int idx, size_t len) addnstr (entry, len); if (shortened) - FREE(&box); + mem_free(&box); return (1); }