| 2819 | } |
| 2820 | |
| 2821 | struct packfile_store *packfile_store_new(struct odb_source *source) |
| 2822 | { |
| 2823 | struct packfile_store *store; |
| 2824 | CALLOC_ARRAY(store, 1); |
| 2825 | store->source = source; |
| 2826 | strmap_init(&store->packs_by_path); |
| 2827 | return store; |
| 2828 | } |
| 2829 | |
| 2830 | void packfile_store_free(struct packfile_store *store) |
| 2831 | { |
no test coverage detected