mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Fix datarace in gitea_uploader.go (#19409)
This commit is contained in:
		@@ -754,13 +754,13 @@ func (g *GiteaLocalUploader) CreateReviews(reviews ...*base.Review) error {
 | 
				
			|||||||
				_ = reader.Close()
 | 
									_ = reader.Close()
 | 
				
			||||||
				_ = writer.Close()
 | 
									_ = writer.Close()
 | 
				
			||||||
			}()
 | 
								}()
 | 
				
			||||||
			go func() {
 | 
								go func(comment *base.ReviewComment) {
 | 
				
			||||||
				if err := git.GetRepoRawDiffForFile(g.gitRepo, pr.MergeBase, headCommitID, git.RawDiffNormal, comment.TreePath, writer); err != nil {
 | 
									if err := git.GetRepoRawDiffForFile(g.gitRepo, pr.MergeBase, headCommitID, git.RawDiffNormal, comment.TreePath, writer); err != nil {
 | 
				
			||||||
					// We should ignore the error since the commit maybe removed when force push to the pull request
 | 
										// We should ignore the error since the commit maybe removed when force push to the pull request
 | 
				
			||||||
					log.Warn("GetRepoRawDiffForFile failed when migrating [%s, %s, %s, %s]: %v", g.gitRepo.Path, pr.MergeBase, headCommitID, comment.TreePath, err)
 | 
										log.Warn("GetRepoRawDiffForFile failed when migrating [%s, %s, %s, %s]: %v", g.gitRepo.Path, pr.MergeBase, headCommitID, comment.TreePath, err)
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
				_ = writer.Close()
 | 
									_ = writer.Close()
 | 
				
			||||||
			}()
 | 
								}(comment)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			patch, _ = git.CutDiffAroundLine(reader, int64((&models.Comment{Line: int64(line + comment.Position - 1)}).UnsignedLine()), line < 0, setting.UI.CodeCommentLines)
 | 
								patch, _ = git.CutDiffAroundLine(reader, int64((&models.Comment{Line: int64(line + comment.Position - 1)}).UnsignedLine()), line < 0, setting.UI.CodeCommentLines)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user