The use of these two is rather trivial, and it's easy to see none of their callers care about errno. So let's move them from refs_resolve_ref_unsafe() to refs_resolve_ref_unsafe_with_errno(), these were the last two callers, so we can get rid of that wrapper function. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- refs.c | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/refs.c b/refs.c index 1d44027497e..3357ba14e1d 100644 --- a/refs.c +++ b/refs.c @@ -267,21 +267,6 @@ int ref_resolves_to_object(const char *refname, return 1; } -static const char *refs_resolve_ref_unsafe(struct ref_store *refs, - const char *refname, - int resolve_flags, - struct object_id *oid, int *flags) -{ - int failure_errno = 0; - const char *refn; - refn = refs_resolve_ref_unsafe_with_errno(refs, refname, resolve_flags, - oid, flags, &failure_errno); - if (!refn) - /* For unmigrated legacy callers */ - errno = failure_errno; - return refn; -} - char *refs_resolve_refdup(struct ref_store *refs, const char *refname, int resolve_flags, struct object_id *oid, int *flags) @@ -675,13 +660,16 @@ int expand_ref(struct repository *repo, const char *str, int len, struct object_id oid_from_ref; struct object_id *this_result; int flag; + struct ref_store *refs = get_main_ref_store(repo); + int ignore_errno; this_result = refs_found ? &oid_from_ref : oid; strbuf_reset(&fullref); strbuf_addf(&fullref, *p, len, str); - r = refs_resolve_ref_unsafe(get_main_ref_store(repo), - fullref.buf, RESOLVE_REF_READING, - this_result, &flag); + r = refs_resolve_ref_unsafe_with_errno(refs, fullref.buf, + RESOLVE_REF_READING, + this_result, &flag, + &ignore_errno); if (r) { if (!refs_found++) *ref = xstrdup(r); @@ -710,12 +698,14 @@ int repo_dwim_log(struct repository *r, const char *str, int len, for (p = ref_rev_parse_rules; *p; p++) { struct object_id hash; const char *ref, *it; + int ignore_errno; strbuf_reset(&path); strbuf_addf(&path, *p, len, str); - ref = refs_resolve_ref_unsafe(refs, path.buf, - RESOLVE_REF_READING, - &hash, NULL); + ref = refs_resolve_ref_unsafe_with_errno(refs, path.buf, + RESOLVE_REF_READING, + &hash, NULL, + &ignore_errno); if (!ref) continue; if (refs_reflog_exists(refs, path.buf)) -- 2.32.0-dev