Avoid another allocation

This commit is contained in:
sin 2016-01-06 15:55:25 +00:00
parent fa6b45a96d
commit 5fb5e9f82f
1 changed files with 2 additions and 4 deletions

View File

@ -423,12 +423,12 @@ canopendir(char *path)
void void
printent(struct entry *ent, int active) printent(struct entry *ent, int active)
{ {
char *name; char name[PATH_MAX];
unsigned int maxlen = COLS - strlen(CURSR) - 1; unsigned int maxlen = COLS - strlen(CURSR) - 1;
char cm = 0; char cm = 0;
/* Copy name locally */ /* Copy name locally */
name = xstrdup(ent->name); strlcpy(name, ent->name, sizeof(name));
if (S_ISDIR(ent->mode)) { if (S_ISDIR(ent->mode)) {
cm = '/'; cm = '/';
@ -455,8 +455,6 @@ printent(struct entry *ent, int active)
printw("%s%s\n", active ? CURSR : EMPTY, name); printw("%s%s\n", active ? CURSR : EMPTY, name);
else else
printw("%s%s%c\n", active ? CURSR : EMPTY, name, cm); printw("%s%s%c\n", active ? CURSR : EMPTY, name, cm);
free(name);
} }
int int