Browse Source

Fix missing-return bug (#2109)

for-closed-social
Ethan Koenig 7 years ago
committed by Lunny Xiao
parent
commit
2fd039864b
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      modules/context/repo.go

+ 1
- 0
modules/context/repo.go View File

@ -394,6 +394,7 @@ func RepoRef() macaron.Handler {
err = fmt.Errorf("No branches in non-bare repository %s",
ctx.Repo.GitRepo.Path)
ctx.Handle(500, "GetBranches", err)
return
}
refName = brs[0]
}

Loading…
Cancel
Save