summaryrefslogtreecommitdiffstats
path: root/list-objects.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2014-10-15 18:34:34 -0400
committerJunio C Hamano <gitster@pobox.com>2014-10-16 10:10:37 -0700
commit46be823124bb6a6ff0e06dc19c327b599ed97c72 (patch)
tree3cd5b02dcf8316c8416ae850771d2fdb159e7d42 /list-objects.c
parent68f492359e29bbdf633201406d0646deee2b298c (diff)
downloadgit-46be823124bb6a6ff0e06dc19c327b599ed97c72.tar.gz
git-46be823124bb6a6ff0e06dc19c327b599ed97c72.tar.xz
object_array: add a "clear" function
There's currently no easy way to free the memory associated with an object_array (and in most cases, we simply leak the memory in a rev_info's pending array). Let's provide a helper to make this easier to handle. We can make use of it in list-objects.c, which does the same thing by hand (but fails to free the "name" field of each entry, potentially leaking memory). Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'list-objects.c')
-rw-r--r--list-objects.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/list-objects.c b/list-objects.c
index 3595ee7a2..fad6808aa 100644
--- a/list-objects.c
+++ b/list-objects.c
@@ -228,11 +228,6 @@ void traverse_commit_list(struct rev_info *revs,
die("unknown pending object %s (%s)",
sha1_to_hex(obj->sha1), name);
}
- if (revs->pending.nr) {
- free(revs->pending.objects);
- revs->pending.nr = 0;
- revs->pending.alloc = 0;
- revs->pending.objects = NULL;
- }
+ object_array_clear(&revs->pending);
strbuf_release(&base);
}