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) {
|
||||
l = n->next;
|
||||
free(n->pattern);
|
||||
free(n);
|
||||
}
|
||||
excludes = NULL;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user