Save one level of indentation

This commit is contained in:
sin 2014-10-22 16:56:31 +01:00
parent b39da16920
commit 1183a9428f

29
noice.c
View file

@ -672,22 +672,21 @@ nochange:
if (testopendir(tmp) == 0) { if (testopendir(tmp) == 0) {
printwarn(); printwarn();
goto nochange; goto nochange;
} else {
free(path);
path = xrealpath(tmp);
free(tmp);
free(filter);
filter = xstrdup(ifilter); /* Reset filter */
/* Forget history */
while (!SLIST_EMPTY(&histhead)) {
hist = SLIST_FIRST(&histhead);
SLIST_REMOVE_HEAD(&histhead, entry);
free(hist);
}
DPRINTF_S(path);
cur = 0;
goto out;
} }
free(path);
path = xrealpath(tmp);
free(tmp);
free(filter);
filter = xstrdup(ifilter); /* Reset filter */
/* Forget history */
while (!SLIST_EMPTY(&histhead)) {
hist = SLIST_FIRST(&histhead);
SLIST_REMOVE_HEAD(&histhead, entry);
free(hist);
}
DPRINTF_S(path);
cur = 0;
goto out;
} }
} }