Browse Source

Avoid another allocation

master
sin 9 years ago
parent
commit
5fb5e9f82f
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      noice.c

+ 2
- 4
noice.c View File

@@ -423,12 +423,12 @@ canopendir(char *path)
void
printent(struct entry *ent, int active)
{
char *name;
char name[PATH_MAX];
unsigned int maxlen = COLS - strlen(CURSR) - 1;
char cm = 0;

/* Copy name locally */
name = xstrdup(ent->name);
strlcpy(name, ent->name, sizeof(name));

if (S_ISDIR(ent->mode)) {
cm = '/';
@@ -455,8 +455,6 @@ printent(struct entry *ent, int active)
printw("%s%s\n", active ? CURSR : EMPTY, name);
else
printw("%s%s%c\n", active ? CURSR : EMPTY, name, cm);

free(name);
}

int


Loading…
Cancel
Save