"Shawn O. Pearce" <spearce@xxxxxxxxxxx> writes: > diff --git a/list-objects.c b/list-objects.c > index e5c88c2..713bef9 100644 > --- a/list-objects.c > +++ b/list-objects.c > @@ -170,4 +170,11 @@ void traverse_commit_list(struct rev_info *revs, > } > for (i = 0; i < objects.nr; i++) > show_object(&objects.objects[i]); > + free(objects.objects); > + if (revs->pending.nr) { > + revs->pending.nr = 0; > + revs->pending.alloc = 0; > + revs->pending.objects = NULL; > + free(revs->pending.objects); > + } > } It is locally verifiable that objects.objects are no longer needed after this point, but it made me a bit nervous about freeing of revs->pending.objects. I think the existing callers are all Ok, but somebody else should double check. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html