| 12 | } |
| 13 | |
| 14 | void odb_source_init(struct odb_source *source, |
| 15 | struct object_database *odb, |
| 16 | enum odb_source_type type, |
| 17 | const char *path, |
| 18 | bool local) |
| 19 | { |
| 20 | source->odb = odb; |
| 21 | source->type = type; |
| 22 | source->local = local; |
| 23 | source->path = xstrdup(path); |
| 24 | } |
| 25 | |
| 26 | void odb_source_free(struct odb_source *source) |
| 27 | { |
no test coverage detected