Fix commit file status parser (#30602) (#30606)

Backport #30602 by wxiaoguang

Try to fix  #30492

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
pull/30609/head
Giteabot 10 months ago committed by GitHub
parent 79484e1cb7
commit 08822651a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -459,7 +459,7 @@ func parseCommitFileStatus(fileStatus *CommitFileStatus, stdout io.Reader) {
_, _ = rd.Discard(1)
}
for {
modifier, err := rd.ReadSlice('\x00')
modifier, err := rd.ReadString('\x00')
if err != nil {
if err != io.EOF {
log.Error("Unexpected error whilst reading from git log --name-status. Error: %v", err)

Loading…
Cancel
Save