Properly free() the pattern in exclude_clear()
Fixes a tiny, insignificant memory leak.
Этот коммит содержится в:
родитель
a7b7841ac0
Коммит
f078cb6bc7
@ -93,6 +93,7 @@ void exclude_clear() {
|
|||||||
|
|
||||||
for(n=excludes; n!=NULL; n=l) {
|
for(n=excludes; n!=NULL; n=l) {
|
||||||
l = n->next;
|
l = n->next;
|
||||||
|
free(n->pattern);
|
||||||
free(n);
|
free(n);
|
||||||
}
|
}
|
||||||
excludes = NULL;
|
excludes = NULL;
|
||||||
|
Загрузка…
Ссылка в новой задаче
Block a user