| 440 | } |
| 441 | |
| 442 | void close_pack(struct packed_git *p) |
| 443 | { |
| 444 | close_pack_windows(p); |
| 445 | close_pack_fd(p); |
| 446 | close_pack_index(p); |
| 447 | close_pack_revindex(p); |
| 448 | close_pack_mtimes(p); |
| 449 | oidset_clear(&p->bad_objects); |
| 450 | } |
| 451 | |
| 452 | void unlink_pack_path(const char *pack_name, int force_delete) |
| 453 | { |
no test coverage detected