]> git.ipfire.org Git - thirdparty/git.git/commit - path.c
validate_headref: use skip_prefix for symref parsing
authorJeff King <peff@peff.net>
Wed, 27 Sep 2017 06:17:26 +0000 (02:17 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 27 Sep 2017 07:06:31 +0000 (16:06 +0900)
commit7eb4b9d025e1ac2ed5a49530c614b7e69054625a
tree2a49bf97e1e67044c5228c0513ffeeaceaefd4e2
parent6e68c914102774832c519804498538791cdddff9
validate_headref: use skip_prefix for symref parsing

Since the previous commit guarantees that our symref buffer
is NUL-terminated, we can just use skip_prefix() and friends
to parse it. This is shorter and saves us having to deal
with magic numbers and keeping the "len" counter up to date.

While we're at it, let's name the rather obscure "buf" to
"refname", since that is the thing we are parsing with it.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
path.c