diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-10-13 14:18:28 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-10-13 14:18:28 -0700 |
commit | a45eddec40b7fd0b9a86ccd0e889a785829d55d7 (patch) | |
tree | 8193fea2e96795af6435e37d2539614fe3e47135 /builtin/commit-graph.c | |
parent | c75e91499ba78278418b76f85964642a18af449c (diff) | |
parent | da09e7af68247519e2b19fc8dff113896c39ac3c (diff) |
Merge branch 'jk/commit-graph-leak-fixes'
Leakfix.
* jk/commit-graph-leak-fixes:
commit-graph: clear oidset after finishing write
commit-graph: free write-context base_graph_name during cleanup
commit-graph: free write-context entries before overwriting
commit-graph: free graph struct that was not added to chain
commit-graph: delay base_graph assignment in add_graph_to_chain()
commit-graph: free all elements of graph chain
commit-graph: move slab-clearing to close_commit_graph()
merge: free result of repo_get_merge_bases()
commit-reach: free temporary list in get_octopus_merge_bases()
t6700: mark test as leak-free
Diffstat (limited to 'builtin/commit-graph.c')
-rw-r--r-- | builtin/commit-graph.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c index f5e66e9969..45d035af60 100644 --- a/builtin/commit-graph.c +++ b/builtin/commit-graph.c @@ -328,6 +328,7 @@ cleanup: FREE_AND_NULL(options); string_list_clear(&pack_indexes, 0); strbuf_release(&buf); + oidset_clear(&commits); return result; } |