diff options
author | Benoit Sigoure <tsuna@lrde.epita.fr> | 2007-10-29 08:00:33 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-10-29 11:39:07 -0700 |
commit | 399f0a8eedeec209c2eb97be6285331087234644 (patch) | |
tree | 2d9e5d8cbf5a682cee7d8b5d2293fb4143490682 /builtin-add.c | |
parent | 1c1f79a1e44547d039e7bf94d9aaadd3fae007d1 (diff) | |
download | git-399f0a8eedeec209c2eb97be6285331087234644.tar.gz |
Fix a small memory leak in builtin-add
prune_directory and fill_directory allocated one byte per pathspec and never
freed it.
Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-add.c')
-rw-r--r-- | builtin-add.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin-add.c b/builtin-add.c index 3d8b8b4f89..373f87f9f2 100644 --- a/builtin-add.c +++ b/builtin-add.c @@ -44,6 +44,7 @@ static void prune_directory(struct dir_struct *dir, const char **pathspec, int p die("pathspec '%s' did not match any files", pathspec[i]); } + free(seen); } static void fill_directory(struct dir_struct *dir, const char **pathspec, @@ -140,6 +141,7 @@ static void refresh(int verbose, const char **pathspec) if (!seen[i]) die("pathspec '%s' did not match any files", pathspec[i]); } + free(seen); } static int git_add_config(const char *var, const char *value) |