Fix nil pointer dereference, pt2

main v0.0.8
René Jochum 2 years ago
parent 17399099e0
commit c1fce6b28b
Signed by: jochum
GPG Key ID: F7D906F5E51E8E5E

@ -163,7 +163,7 @@ func (c *Components) Stop() error {
// Init them sorted now
for _, component := range components {
if c == nil {
if component == nil {
continue
}

Loading…
Cancel
Save