account for empty lines in receive-hook message (#10773)

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
This commit is contained in:
zeripath 2020-03-20 18:21:28 +00:00 committed by GitHub
parent 2fa1078911
commit b3f4f812d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1423,7 +1423,7 @@ func (err *ErrPushRejected) GenerateMessage() {
} }
i += 8 i += 8
nl := strings.IndexByte(err.StdErr[i:], '\n') nl := strings.IndexByte(err.StdErr[i:], '\n')
if nl > 0 { if nl >= 0 {
messageBuilder.WriteString(err.StdErr[i : i+nl+1]) messageBuilder.WriteString(err.StdErr[i : i+nl+1])
i = i + nl + 1 i = i + nl + 1
} else { } else {