diff options
author | Junio C Hamano <junkio@cox.net> | 2005-12-16 03:52:51 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-16 03:52:51 +0100 |
commit | 06bf6ac4248e834a229027908d405f5e42ac96d7 (patch) | |
tree | a5783334c2818e24776b1087a97b500187a7e9a0 /refs.c | |
parent | We do not like "HEAD" as a new branch name (diff) | |
download | git-06bf6ac4248e834a229027908d405f5e42ac96d7.tar.xz git-06bf6ac4248e834a229027908d405f5e42ac96d7.zip |
refs.c: off-by-one fix.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to '')
-rw-r--r-- | refs.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -346,8 +346,11 @@ int check_ref_format(const char *ref) if (level < 2) return -1; /* at least of form "heads/blah" */ - /* do not allow ref name to end in "HEAD" */ - if (cp - ref > 4 && !strcmp(cp - 4, "HEAD")) + /* Do not allow ref name to end in "HEAD" + * Note that cp is poiting at one past NUL at the end. + * i.e. cp[-1] = NUL. + */ + if (5 <= cp - ref && !strcmp(cp - 5, "HEAD")) return -1; return 0; |