Browse Source

Reset to initial filter on directory change

master
lostd 10 years ago
parent
commit
a75021c2d2
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      noice.c

+ 5
- 0
noice.c View File

@@ -450,6 +450,8 @@ nochange:
strlcpy(tmp, dir, strlen(dir) + 1); strlcpy(tmp, dir, strlen(dir) + 1);
free(path); free(path);
path = tmp; path = tmp;
free(filter);
filter = strdup(ifilter); /* Reset filter */
goto out; goto out;
} }
} }
@@ -490,6 +492,8 @@ nochange:
if (S_ISDIR(sb.st_mode)) { if (S_ISDIR(sb.st_mode)) {
free(path); free(path);
path = pathnew; path = pathnew;
free(filter);
filter = strdup(ifilter); /* Reset filter */
goto out; goto out;
} }
/* Regular file */ /* Regular file */
@@ -538,6 +542,7 @@ nochange:
printmsg(""); printmsg("");
goto nochange; goto nochange;
} }
free(filter);
filter = tmp; filter = tmp;
filter_re = re; filter_re = re;
DPRINTF_S(filter); DPRINTF_S(filter);


||||||
x
 
000:0
Loading…
Cancel
Save