Bugfix: Wrong destruction order in Library::LocalDB made Library break when queue was running.

This commit is contained in:
Daniel Önnerby 2008-05-20 19:34:14 +00:00
parent cef1fb7dd3
commit 1be4bd4b10

View File

@ -57,6 +57,8 @@ Library::LocalDB::LocalDB(void){
}
Library::LocalDB::~LocalDB(void){
this->Exit(true);
this->threads.join_all();
}
//////////////////////////////////////////