Przeglądaj źródła

No need for a temporary buffer

xdirname() uses xstrdup() internally so we are safe to use that
pointer directly.
master
sin 10 lat temu
rodzic
commit
9bc4b92474
1 zmienionych plików z 1 dodań i 3 usunięć
  1. +1
    -3
      noice.c

+ 1
- 3
noice.c Wyświetl plik

@@ -551,10 +551,8 @@ nochange:
goto nochange;
} else {
dir = xdirname(path);
tmp = xmalloc(strlen(dir) + 1);
strlcpy(tmp, dir, strlen(dir) + 1);
free(path);
path = tmp;
path = dir;
free(filter);
filter = xstrdup(ifilter); /* Reset filter */
/* Recall history */


Ładowanie…
Anuluj
Zapisz