diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-09-15 13:15:27 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-09-15 13:15:27 -0700 |
commit | 1ea5e46cb96d17c3b3927b4eff9765183cf87f8d (patch) | |
tree | 7910465b4f7aee79ff9a6bace72cb8905b72670b | |
parent | Merge branch 'bs/install-strip' (diff) | |
parent | pack-write: skip *.rev work when not writing *.rev (diff) | |
download | tgif-1ea5e46cb96d17c3b3927b4eff9765183cf87f8d.tar.xz |
Merge branch 'ab/reverse-midx-optim'
The code that optionally creates the *.rev reverse index file has
been optimized to avoid needless computation when it is not writing
the file out.
* ab/reverse-midx-optim:
pack-write: skip *.rev work when not writing *.rev
-rw-r--r-- | pack-write.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pack-write.c b/pack-write.c index 2767b78619..067054f097 100644 --- a/pack-write.c +++ b/pack-write.c @@ -222,6 +222,9 @@ const char *write_rev_file(const char *rev_name, uint32_t i; const char *ret; + if (!(flags & WRITE_REV) && !(flags & WRITE_REV_VERIFY)) + return NULL; + ALLOC_ARRAY(pack_order, nr_objects); for (i = 0; i < nr_objects; i++) pack_order[i] = i; |