mirror of https://github.com/Icinga/icinga2.git
Fix null ptr for Application::GetInstance().
This commit is contained in:
parent
98e20f6425
commit
a14e72c292
|
@ -51,7 +51,7 @@ char **Application::m_ArgV;
|
||||||
/**
|
/**
|
||||||
* Constructor for the Application class.
|
* Constructor for the Application class.
|
||||||
*/
|
*/
|
||||||
void Application::Start(void)
|
void Application::OnConfigLoaded(void)
|
||||||
{
|
{
|
||||||
DynamicObject::Start();
|
DynamicObject::Start();
|
||||||
|
|
||||||
|
|
|
@ -87,7 +87,7 @@ public:
|
||||||
static ThreadPool& GetTP(void);
|
static ThreadPool& GetTP(void);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void Start(void);
|
virtual void OnConfigLoaded(void);
|
||||||
virtual void Stop(void);
|
virtual void Stop(void);
|
||||||
|
|
||||||
void RunEventLoop(void) const;
|
void RunEventLoop(void) const;
|
||||||
|
|
Loading…
Reference in New Issue