mirror of
https://github.com/git/git.git
synced 2024-12-03 23:14:23 +08:00
wt-status: plug memory leak while collecting untracked files
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e28a243b00
commit
f5b26b1d14
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user