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 /branch.c | |
parent | Merge branch 'rs/mailinfo-qp-decode-fix' (diff) | |
parent | refs: pass NULL to resolve_ref_unsafe() if hash is not needed (diff) | |
download | tgif-73ecdc606eedbfd98ec66d50d44b3374425fd13b.tar.xz |
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 'branch.c')
-rw-r--r-- | branch.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -191,9 +191,8 @@ int validate_new_branchname(const char *name, struct strbuf *ref, if (!attr_only) { const char *head; - struct object_id oid; - head = resolve_ref_unsafe("HEAD", 0, oid.hash, NULL); + head = resolve_ref_unsafe("HEAD", 0, NULL, NULL); if (!is_bare_repository() && head && !strcmp(head, ref->buf)) die(_("Cannot force update the current branch.")); } |