| 749 | } |
| 750 | |
| 751 | struct bitmap_index *prepare_midx_bitmap_git(struct multi_pack_index *midx) |
| 752 | { |
| 753 | struct bitmap_index *bitmap_git = xcalloc(1, sizeof(*bitmap_git)); |
| 754 | |
| 755 | if (!open_midx_bitmap_1(bitmap_git, midx)) |
| 756 | return bitmap_git; |
| 757 | |
| 758 | free_bitmap_index(bitmap_git); |
| 759 | return NULL; |
| 760 | } |
| 761 | |
| 762 | int bitmap_index_contains_pack(struct bitmap_index *bitmap, struct packed_git *pack) |
| 763 | { |
no test coverage detected