summaryrefslogtreecommitdiff
path: root/branch.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2017-09-23 09:45:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-09-24 01:18:21 (GMT)
commit744c040b19412fa5075810eb1aced105fad96726 (patch)
tree1509d28d0c6bd1cffca54a42dbbc6ccce4c26ba9 /branch.c
parente691b027b60034ed3362fc4d6065b6be85bf234b (diff)
downloadgit-744c040b19412fa5075810eb1aced105fad96726.zip
git-744c040b19412fa5075810eb1aced105fad96726.tar.gz
git-744c040b19412fa5075810eb1aced105fad96726.tar.bz2
refs: pass NULL to resolve_ref_unsafe() if hash is not needed
This allows us to get rid of some write-only variables, among them seven SHA1 buffers. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'branch.c')
-rw-r--r--branch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/branch.c b/branch.c
index 703ded6..4377ce2 100644
--- a/branch.c
+++ b/branch.c
@@ -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."));
}