revision: clear decoration structs during release_revisions()

The point of release_revisions() is to free memory associated with the
rev_info struct, but we have several "struct decoration" members that
are left untouched. Since the previous commit introduced a function to
do that, we can just call it.

We do have to provide some specialized callbacks to map the void
pointers onto real ones (the alternative would be casting the existing
function pointers; this generally works because "void *" is usually
interchangeable with a struct pointer, but it is technically forbidden
by the standard).

Since the line-log code does not expose the type it stores in the
decoration (nor of course the function to free it), I put this behind a
generic line_log_free() entry point. It's possible we may need to add
more line-log specific bits anyway (running t4211 shows a number of
other leaks in the line-log code).

While this doubtless cleans up many leaks triggered by the test suite,
the only script which becomes leak-free is t4217, as it does very little
beyond a simple traversal (its existing leak was from the use of
--children, which is now fixed).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2023-10-05 17:30:14 -04:00 committed by Junio C Hamano
parent 771868243c
commit 8ef8da4842
4 changed files with 22 additions and 0 deletions

View file

@ -1327,3 +1327,13 @@ int line_log_filter(struct rev_info *rev)
return 0;
}
static void free_void_line_log_data(void *data)
{
free_line_log_data(data);
}
void line_log_free(struct rev_info *rev)
{
clear_decoration(&rev->line_log_data, free_void_line_log_data);
}

View file

@ -60,4 +60,6 @@ int line_log_process_ranges_arbitrary_commit(struct rev_info *rev,
int line_log_print(struct rev_info *rev, struct commit *commit);
void line_log_free(struct rev_info *rev);
#endif /* LINE_LOG_H */

View file

@ -3076,6 +3076,11 @@ static void release_revisions_mailmap(struct string_list *mailmap)
static void release_revisions_topo_walk_info(struct topo_walk_info *info);
static void free_void_commit_list(void *list)
{
free_commit_list(list);
}
void release_revisions(struct rev_info *revs)
{
free_commit_list(revs->commits);
@ -3093,6 +3098,10 @@ void release_revisions(struct rev_info *revs)
diff_free(&revs->pruning);
reflog_walk_info_release(revs->reflog_info);
release_revisions_topo_walk_info(revs->topo_walk_info);
clear_decoration(&revs->children, free_void_commit_list);
clear_decoration(&revs->merge_simplification, free);
clear_decoration(&revs->treesame, free);
line_log_free(revs);
}
static void add_child(struct rev_info *revs, struct commit *parent, struct commit *child)

View file

@ -2,6 +2,7 @@
test_description='git log with filter options limiting the output'
TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh
test_expect_success 'setup test' '