1
1

Properly free() the pattern in exclude_clear()

Fixes a tiny, insignificant memory leak.
Этот коммит содержится в:
Yorhel 2010-04-27 12:49:12 +02:00
родитель 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;