fsck: use local repository
Inmaint0d30feef3c
(fsck: create scaffolding for rev-index checks, 2023-04-17) and later5a6072f631
(fsck: validate .rev file header, 2023-04-17), the check_pack_rev_indexes() method was created with a 'struct repository *r' parameter. However, this parameter was unused and instead 'the_repository' was used in its place. Fix this situation with the obvious replacement. Signed-off-by: Derrick Stolee <derrickstolee@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
parent
756f1bcd29
commit
cf9cd8b55c
|
@ -869,20 +869,20 @@ static int check_pack_rev_indexes(struct repository *r, int show_progress)
|
|||
int res = 0;
|
||||
|
||||
if (show_progress) {
|
||||
for (struct packed_git *p = get_all_packs(the_repository); p; p = p->next)
|
||||
for (struct packed_git *p = get_all_packs(r); p; p = p->next)
|
||||
pack_count++;
|
||||
progress = start_delayed_progress("Verifying reverse pack-indexes", pack_count);
|
||||
pack_count = 0;
|
||||
}
|
||||
|
||||
for (struct packed_git *p = get_all_packs(the_repository); p; p = p->next) {
|
||||
for (struct packed_git *p = get_all_packs(r); p; p = p->next) {
|
||||
int load_error = load_pack_revindex_from_disk(p);
|
||||
|
||||
if (load_error < 0) {
|
||||
error(_("unable to load rev-index for pack '%s'"), p->pack_name);
|
||||
res = ERROR_PACK_REV_INDEX;
|
||||
} else if (!load_error &&
|
||||
!load_pack_revindex(the_repository, p) &&
|
||||
!load_pack_revindex(r, p) &&
|
||||
verify_pack_revindex(p)) {
|
||||
error(_("invalid rev-index for pack '%s'"), p->pack_name);
|
||||
res = ERROR_PACK_REV_INDEX;
|
||||
|
|
Loading…
Reference in New Issue