| 783 | } |
| 784 | |
| 785 | void unuse_pack(struct pack_window **w_cursor) |
| 786 | { |
| 787 | struct pack_window *w = *w_cursor; |
| 788 | if (w) { |
| 789 | w->inuse_cnt--; |
| 790 | *w_cursor = NULL; |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | struct packed_git *add_packed_git(struct repository *r, const char *path, |
| 795 | size_t path_len, int local) |
no outgoing calls
no test coverage detected