Make sure spawned thread is joined again

...otherwise, it might still run during exit(3) and cause problems.
This commit is contained in:
Stephan Bergmann
2012-02-16 19:00:40 +01:00
parent 4a98b359d8
commit 81921bec4b

View File

@@ -165,6 +165,7 @@ namespace dbaccess
{
m_pEventBroadcaster->removeEventsForProcessor( this );
m_pEventBroadcaster->terminate();
m_pEventBroadcaster->join();
m_pEventBroadcaster = NULL;
}