fix templater: Guard against empty parent reference

This commit is contained in:
Vincent Ambo 2017-02-08 17:23:34 +01:00
parent bace4dd895
commit 756a4c745d

View file

@ -143,7 +143,7 @@ func applyLimits(rs *[]context.ResourceSet, include *[]string, exclude *[]string
// Check whether an include/exclude string slice matches a resource set
func matchesResourceSet(s *[]string, rs *context.ResourceSet) bool {
for _, r := range *s {
if r == rs.Name || r == *rs.Parent {
if r == rs.Name || (rs.Parent != nil && r == *rs.Parent) {
return true
}
}