releaser: Git info bounds checking

This commit is contained in:
Bjørn Erik Pedersen 2018-01-11 09:39:42 +01:00
parent 50fb49c3d9
commit f82428d2e0
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F
1 changed files with 15 additions and 6 deletions

View File

@ -227,13 +227,22 @@ func getGitInfosBefore(ref, tag, repo, repoPath string, remote bool) (gitInfos,
for _, entry := range entries {
items := strings.Split(entry, "\x1f")
gi := gitInfo{
Hash: items[0],
Author: items[1],
Subject: items[2],
Body: items[3],
gi := gitInfo{}
if len(items) > 0 {
gi.Hash = items[0]
}
if remote {
if len(items) > 1 {
gi.Author = items[1]
}
if len(items) > 2 {
gi.Subject = items[2]
}
if len(items) > 3 {
gi.Body = items[3]
}
if remote && gi.Hash != "" {
gc, err := client.fetchCommit(gi.Hash)
if err == nil {
gi.GitHubCommit = &gc