#538 fixed ParallelSocketReactor dtor

This commit is contained in:
Guenter Obiltschnig 2014-09-29 10:23:41 +02:00
parent b5658d3938
commit 135c10c0f5

View File

@ -63,8 +63,15 @@ public:
~ParallelSocketReactor()
{
this->stop();
_thread.join();
try
{
this->stop();
_thread.join();
}
catch (...)
{
poco_unexpected();
}
}
protected: