mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-10 11:14:41 +02:00
Backport #34334 by @lunny The `ci.HeadGitRepo` was opened and closed in the function `ParseCompareInfo` but reused in the function `PrepareCompareDiff`. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
16f15d2f7b
commit
e4717d426e
@ -401,12 +401,11 @@ func ParseCompareInfo(ctx *context.Context) *common.CompareInfo {
|
|||||||
ci.HeadRepo = ctx.Repo.Repository
|
ci.HeadRepo = ctx.Repo.Repository
|
||||||
ci.HeadGitRepo = ctx.Repo.GitRepo
|
ci.HeadGitRepo = ctx.Repo.GitRepo
|
||||||
} else if has {
|
} else if has {
|
||||||
ci.HeadGitRepo, err = gitrepo.OpenRepository(ctx, ci.HeadRepo)
|
ci.HeadGitRepo, err = gitrepo.RepositoryFromRequestContextOrOpen(ctx, ci.HeadRepo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("OpenRepository", err)
|
ctx.ServerError("RepositoryFromRequestContextOrOpen", err)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
defer ci.HeadGitRepo.Close()
|
|
||||||
} else {
|
} else {
|
||||||
ctx.NotFound(nil)
|
ctx.NotFound(nil)
|
||||||
return nil
|
return nil
|
||||||
@ -721,11 +720,6 @@ func getBranchesAndTagsForRepo(ctx gocontext.Context, repo *repo_model.Repositor
|
|||||||
// CompareDiff show different from one commit to another commit
|
// CompareDiff show different from one commit to another commit
|
||||||
func CompareDiff(ctx *context.Context) {
|
func CompareDiff(ctx *context.Context) {
|
||||||
ci := ParseCompareInfo(ctx)
|
ci := ParseCompareInfo(ctx)
|
||||||
defer func() {
|
|
||||||
if ci != nil && ci.HeadGitRepo != nil {
|
|
||||||
ci.HeadGitRepo.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
if ctx.Written() {
|
if ctx.Written() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -1290,11 +1290,6 @@ func CompareAndPullRequestPost(ctx *context.Context) {
|
|||||||
)
|
)
|
||||||
|
|
||||||
ci := ParseCompareInfo(ctx)
|
ci := ParseCompareInfo(ctx)
|
||||||
defer func() {
|
|
||||||
if ci != nil && ci.HeadGitRepo != nil {
|
|
||||||
ci.HeadGitRepo.Close()
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
if ctx.Written() {
|
if ctx.Written() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user