diff --git a/src/hyperiond/hyperiond.cpp b/src/hyperiond/hyperiond.cpp index b2fcc185..39e50f36 100644 --- a/src/hyperiond/hyperiond.cpp +++ b/src/hyperiond/hyperiond.cpp @@ -83,7 +83,11 @@ int main(int argc, char** argv) if (config.isMember("bootsequence")) { bootSequence = BootSequenceFactory::createBootSequence(&hyperion, config["bootsequence"]); - bootSequence->start(); + + if (bootSequence != nullptr) + { + bootSequence->start(); + } } // create XBMC video checker if the configuration is present