| 680 | } |
| 681 | |
| 682 | static int open_packed_git(struct packed_git *p) |
| 683 | { |
| 684 | if (!open_packed_git_1(p)) |
| 685 | return 0; |
| 686 | close_pack_fd(p); |
| 687 | return -1; |
| 688 | } |
| 689 | |
| 690 | static int in_window(struct repository *r, struct pack_window *win, |
| 691 | off_t offset) |
no test coverage detected