mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Fix parentCommit invalid memory address or nil pointer dereference. (#33204)
When the parent Commit does not exist on gitea, an error will be reported when opening the Commit details page: invalid memory address or nil pointer dereference.  
This commit is contained in:
		| @@ -64,7 +64,10 @@ func GetRepoRawDiffForFile(repo *Repository, startCommit, endCommit string, diff | ||||
| 		} else if commit.ParentCount() == 0 { | ||||
| 			cmd.AddArguments("show").AddDynamicArguments(endCommit).AddDashesAndList(files...) | ||||
| 		} else { | ||||
| 			c, _ := commit.Parent(0) | ||||
| 			c, err := commit.Parent(0) | ||||
| 			if err != nil { | ||||
| 				return err | ||||
| 			} | ||||
| 			cmd.AddArguments("diff", "-M").AddDynamicArguments(c.ID.String(), endCommit).AddDashesAndList(files...) | ||||
| 		} | ||||
| 	case RawDiffPatch: | ||||
| @@ -74,7 +77,10 @@ func GetRepoRawDiffForFile(repo *Repository, startCommit, endCommit string, diff | ||||
| 		} else if commit.ParentCount() == 0 { | ||||
| 			cmd.AddArguments("format-patch", "--no-signature", "--stdout", "--root").AddDynamicArguments(endCommit).AddDashesAndList(files...) | ||||
| 		} else { | ||||
| 			c, _ := commit.Parent(0) | ||||
| 			c, err := commit.Parent(0) | ||||
| 			if err != nil { | ||||
| 				return err | ||||
| 			} | ||||
| 			query := fmt.Sprintf("%s...%s", endCommit, c.ID.String()) | ||||
| 			cmd.AddArguments("format-patch", "--no-signature", "--stdout").AddDynamicArguments(query).AddDashesAndList(files...) | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user