mirror of
https://github.com/git/git.git
synced 2024-11-25 02:44:48 +08:00
Merge branch 'maint'
* maint: parse_tag_buffer(): do not prefixcmp() out of range
This commit is contained in:
commit
5673d695fc
6
tag.c
6
tag.c
@ -97,7 +97,9 @@ int parse_tag_buffer(struct tag *item, const void *data, unsigned long size)
|
||||
item->tagged = NULL;
|
||||
}
|
||||
|
||||
if (prefixcmp(bufptr, "tag "))
|
||||
if (bufptr + 4 < tail && !prefixcmp(bufptr, "tag "))
|
||||
; /* good */
|
||||
else
|
||||
return -1;
|
||||
bufptr += 4;
|
||||
nl = memchr(bufptr, '\n', tail - bufptr);
|
||||
@ -106,7 +108,7 @@ int parse_tag_buffer(struct tag *item, const void *data, unsigned long size)
|
||||
item->tag = xmemdupz(bufptr, nl - bufptr);
|
||||
bufptr = nl + 1;
|
||||
|
||||
if (!prefixcmp(bufptr, "tagger "))
|
||||
if (bufptr + 7 < tail && !prefixcmp(bufptr, "tagger "))
|
||||
item->date = parse_tag_date(bufptr, tail);
|
||||
else
|
||||
item->date = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user