| 415 | } |
| 416 | |
| 417 | static inline void oidclr(struct object_id *oid, |
| 418 | const struct git_hash_algo *algop) |
| 419 | { |
| 420 | memset(oid->hash, 0, GIT_MAX_RAWSZ); |
| 421 | oid->algo = hash_algo_by_ptr(algop); |
| 422 | } |
| 423 | |
| 424 | static inline struct object_id *oiddup(const struct object_id *src) |
| 425 | { |