wt-status: plug memory leak while collecting untracked files

Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Junio C Hamano 2010-04-09 23:58:27 -07:00
Родитель e28a243b00
Коммит f5b26b1d14
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -379,7 +379,10 @@ static void wt_status_collect_untracked(struct wt_status *s)
if (!match_pathspec(s->pathspec, ent->name, ent->len, 0, NULL))
continue;
string_list_insert(ent->name, &s->untracked);
free(ent);
}
free(dir.entries);
}
void wt_status_collect(struct wt_status *s)