Merge pull request #5143 from kzys/ns-nil
Avoid "invalid memory address or nil pointer dereference" panic
This commit is contained in:
commit
0fe679322b
2 changed files with 10 additions and 1 deletions
|
@ -68,7 +68,7 @@ func (n Namespaces) Contains(ns string) bool {
|
||||||
|
|
||||||
func (n Namespaces) Get(ns string) *Namespace {
|
func (n Namespaces) Get(ns string) *Namespace {
|
||||||
for _, nsp := range n {
|
for _, nsp := range n {
|
||||||
if nsp.Key == ns {
|
if nsp != nil && nsp.Key == ns {
|
||||||
return nsp
|
return nsp
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,15 @@ func TestNamespacesContains(t *testing.T) {
|
||||||
if !ns.Contains("NEWPID") {
|
if !ns.Contains("NEWPID") {
|
||||||
t.Fatal("namespaces should contain NEWPID but does not")
|
t.Fatal("namespaces should contain NEWPID but does not")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
withNil := Namespaces{
|
||||||
|
GetNamespace("UNDEFINED"), // this element will be nil
|
||||||
|
GetNamespace("NEWPID"),
|
||||||
|
}
|
||||||
|
|
||||||
|
if !withNil.Contains("NEWPID") {
|
||||||
|
t.Fatal("namespaces should contain NEWPID but does not")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestCapabilitiesContains(t *testing.T) {
|
func TestCapabilitiesContains(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue