| 62 | }; |
| 63 | |
| 64 | static void fill_pack_info(struct pack_info *info, |
| 65 | struct packed_git *p, const char *pack_name, |
| 66 | uint32_t orig_pack_int_id) |
| 67 | { |
| 68 | memset(info, 0, sizeof(struct pack_info)); |
| 69 | |
| 70 | info->orig_pack_int_id = orig_pack_int_id; |
| 71 | info->pack_name = xstrdup(pack_name); |
| 72 | info->p = p; |
| 73 | info->bitmap_pos = BITMAP_POS_UNKNOWN; |
| 74 | } |
| 75 | |
| 76 | static int pack_info_compare(const void *_a, const void *_b) |
| 77 | { |
no test coverage detected