summaryrefslogtreecommitdiff
path: root/diff-lib.c
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-04-13 20:01:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-04-14 06:56:09 (GMT)
commit689a8e80dd4f7b3a20be88146bdea833c7759603 (patch)
tree3b59de124fe5c41ba3e9e78415b60c66d1b0a61c /diff-lib.c
parentf41fb662f57abccf24d036bb0fd4294eb72261af (diff)
downloadgit-689a8e80dd4f7b3a20be88146bdea833c7759603.zip
git-689a8e80dd4f7b3a20be88146bdea833c7759603.tar.gz
git-689a8e80dd4f7b3a20be88146bdea833c7759603.tar.bz2
revisions API: have release_revisions() release "prune_data"
Extend the the release_revisions() function so that it frees the "prune_data" in the "struct rev_info". This means that any code that calls "release_revisions()" already can get rid of adjacent calls to clear_pathspec(). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff-lib.c')
-rw-r--r--diff-lib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/diff-lib.c b/diff-lib.c
index 0f16281..298265e 100644
--- a/diff-lib.c
+++ b/diff-lib.c
@@ -641,7 +641,6 @@ int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
if (diff_cache(&revs, tree_oid, NULL, 1))
exit(128);
- clear_pathspec(&revs.prune_data);
release_revisions(&revs);
return 0;
}