No need to strdup()

This commit is contained in:
sin 2014-10-21 15:17:44 +01:00
parent 61bc5cd817
commit 330adc995f

View file

@ -622,7 +622,7 @@ nochange:
goto nochange; goto nochange;
} else { } else {
free(path); free(path);
path = strdup(tmp); path = tmp;
free(filter); free(filter);
filter = strdup(ifilter); /* Reset filter */ filter = strdup(ifilter); /* Reset filter */
DPRINTF_S(path); DPRINTF_S(path);