| 3398 | } |
| 3399 | |
| 3400 | static int read_file_or_gitlink(const struct cache_entry *ce, struct strbuf *buf) |
| 3401 | { |
| 3402 | if (!ce) |
| 3403 | return 0; |
| 3404 | return read_blob_object(buf, &ce->oid, ce->ce_mode); |
| 3405 | } |
| 3406 | |
| 3407 | static struct patch *in_fn_table(struct apply_state *state, const char *name) |
| 3408 | { |
no test coverage detected