forked from TrueCloudLab/distribution
Merge pull request #2258 from tt/return-early-to-prevent-nil-pointer-dereference
Return early to prevent nil pointer dereference
This commit is contained in:
commit
b7d5d9bfed
1 changed files with 4 additions and 1 deletions
|
@ -859,8 +859,11 @@ func (app *App) eventBridge(ctx *Context, r *http.Request) notifications.Listene
|
|||
// nameRequired returns true if the route requires a name.
|
||||
func (app *App) nameRequired(r *http.Request) bool {
|
||||
route := mux.CurrentRoute(r)
|
||||
if route == nil {
|
||||
return true
|
||||
}
|
||||
routeName := route.GetName()
|
||||
return route == nil || (routeName != v2.RouteNameBase && routeName != v2.RouteNameCatalog)
|
||||
return routeName != v2.RouteNameBase && routeName != v2.RouteNameCatalog
|
||||
}
|
||||
|
||||
// apiBase implements a simple yes-man for doing overall checks against the
|
||||
|
|
Loading…
Reference in a new issue