1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-16 15:04:19 -04:00

I need to rewrite this

This commit is contained in:
Unknown 2014-03-26 06:43:58 -04:00
parent ac3a653442
commit 78979c6d4c

View File

@ -351,8 +351,9 @@ func GetDiff(repoPath, commitid string) (*Diff, error) {
return nil, err
}
// ????
if commit.ParentCount() == 0 {
return nil, err
return &Diff{}, err
}
rd, wr := io.Pipe()