Add missing ::Stop calls.

Refs #4865
This commit is contained in:
Gunnar Beutner 2014-04-16 15:01:31 +02:00
parent 979ec735a0
commit ed057de512
2 changed files with 4 additions and 0 deletions

View File

@ -94,6 +94,8 @@ void CheckerComponent::Stop(void)
m_ResultTimer->Stop();
m_Thread.join();
DynamicObject::Stop();
}
void CheckerComponent::CheckThreadProc(void)

View File

@ -92,6 +92,8 @@ void Application::Stop(void)
#endif /* _WIN32 */
ClosePidFile();
DynamicObject::Stop();
}
Application::~Application(void)