pack-objects: move in_pack_pos out of struct object_entry
This field is only need for pack-bitmap, which is an optional feature. Move it to a separate array that is only allocated when pack-bitmap is used (like objects[], it is not freed, since we need it until the end of the process) Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
b5c0cbd808
commit
06af3bba41
@ -1033,7 +1033,7 @@ int rebuild_existing_bitmaps(struct packing_data *mapping,
|
||||
oe = packlist_find(mapping, sha1, NULL);
|
||||
|
||||
if (oe)
|
||||
reposition[i] = oe->in_pack_pos + 1;
|
||||
reposition[i] = oe_in_pack_pos(mapping, oe) + 1;
|
||||
}
|
||||
|
||||
rebuild = bitmap_new();
|
||||
|
Reference in New Issue
Block a user