1
1

Fixed crash on browsing dirs with a small window size

Fixes bug #2991787
Этот коммит содержится в:
Yorhel 2010-04-27 12:41:01 +02:00
родитель a35f998168
Коммит a7b7841ac0

Просмотреть файл

@ -141,7 +141,7 @@ void browse_draw_item(struct dir *n, int row) {
}
/* format and add item to the list */
line = malloc(winrows+1);
line = malloc(winrows > 35 ? winrows+1 : 36);
switch(graph) {
case 0:
sprintf(line, "%%c %%8s %%c%%-%ds", wincols-13);