diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-28 14:47:56 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-28 14:47:56 +0900 |
commit | 73ecdc606eedbfd98ec66d50d44b3374425fd13b (patch) | |
tree | 6a2aeb6eb0b30e1645c8af06b10c9f4ec2815dd8 /http-backend.c | |
parent | 2812ca7f0e11f6a46c8b1b5b4450df20412c22be (diff) | |
parent | 744c040b19412fa5075810eb1aced105fad96726 (diff) | |
download | git-73ecdc606eedbfd98ec66d50d44b3374425fd13b.tar.gz |
Merge branch 'rs/resolve-ref-optional-result'
Code clean-up.
* rs/resolve-ref-optional-result:
refs: pass NULL to resolve_ref_unsafe() if hash is not needed
refs: pass NULL to refs_resolve_ref_unsafe() if hash is not needed
refs: make sha1 output parameter of refs_resolve_ref_unsafe() optional
Diffstat (limited to 'http-backend.c')
-rw-r--r-- | http-backend.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/http-backend.c b/http-backend.c index e51c7805c8..f3dc218b2a 100644 --- a/http-backend.c +++ b/http-backend.c @@ -486,10 +486,9 @@ static int show_head_ref(const char *refname, const struct object_id *oid, struct strbuf *buf = cb_data; if (flag & REF_ISSYMREF) { - struct object_id unused; const char *target = resolve_ref_unsafe(refname, RESOLVE_REF_READING, - unused.hash, NULL); + NULL, NULL); if (target) strbuf_addf(buf, "ref: %s\n", strip_namespace(target)); |