Fix commit file status parser (#30602)

Try to fix  #30492

(cherry picked from commit 53cf46cae7475befa2dde554bbd9147e436072b9)
This commit is contained in:
wxiaoguang 2024-04-19 22:41:03 +08:00 committed by Gergely Nagy
parent 3330b4d5d8
commit 27434acef6
No known key found for this signature in database

View file

@ -462,7 +462,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)