summaryrefslogtreecommitdiff
path: root/sha1_name.c
diff options
context:
space:
mode:
authorRamkumar Ramachandra <artagnon@gmail.com>2013-05-07 21:55:11 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-05-08 19:13:12 (GMT)
commit83d16bc7bec92ea3f705f559c5a13589cb7c1f92 (patch)
treee0a54ee1049d9bb4c821deb539134dbd5805c109 /sha1_name.c
parent128fd54daeff23fbef0d0b7ec1a31f38d0803f63 (diff)
downloadgit-83d16bc7bec92ea3f705f559c5a13589cb7c1f92.zip
git-83d16bc7bec92ea3f705f559c5a13589cb7c1f92.tar.gz
git-83d16bc7bec92ea3f705f559c5a13589cb7c1f92.tar.bz2
sha1_name: check @{-N} errors sooner
It's trivial to check for them in the @{N} parsing loop. Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com> Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_name.c')
-rw-r--r--sha1_name.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sha1_name.c b/sha1_name.c
index 45b89d9..446cc62 100644
--- a/sha1_name.c
+++ b/sha1_name.c
@@ -448,7 +448,10 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
if (len && str[len-1] == '}') {
for (at = len-4; at >= 0; at--) {
if (str[at] == '@' && str[at+1] == '{') {
- if (at == 0 && str[2] == '-') {
+ if (str[at+2] == '-') {
+ if (at != 0)
+ /* @{-N} not at start */
+ return -1;
nth_prior = 1;
continue;
}
@@ -497,10 +500,6 @@ static int get_sha1_basic(const char *str, int len, unsigned char *sha1)
unsigned long co_time;
int co_tz, co_cnt;
- /* a @{-N} placed anywhere except the start is an error */
- if (str[at+2] == '-')
- return -1;
-
/* Is it asking for N-th entry, or approxidate? */
for (i = nth = 0; 0 <= nth && i < reflog_len; i++) {
char ch = str[at+2+i];