Fix nil pointer dereference

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

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

Loading…
Cancel
Save