diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-04-09 23:58:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-10 00:43:59 -0700 |
commit | f5b26b1d14d3362fa41e51f4f78cdf56968733ba (patch) | |
tree | 1ebd38badb1d15a9075df6ee5905faa31e013636 | |
parent | e28a243b0000e7b82adcc5eb7445ef132f22b9de (diff) | |
download | git-f5b26b1d14d3362fa41e51f4f78cdf56968733ba.tar.gz git-f5b26b1d14d3362fa41e51f4f78cdf56968733ba.tar.xz |
wt-status: plug memory leak while collecting untracked files
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | wt-status.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wt-status.c b/wt-status.c index db20b8610..c88159ad0 100644 --- a/wt-status.c +++ b/wt-status.c @@ -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) |