mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
#538 fixed ParallelSocketReactor dtor
This commit is contained in:
@@ -63,8 +63,15 @@ public:
|
||||
|
||||
~ParallelSocketReactor()
|
||||
{
|
||||
this->stop();
|
||||
_thread.join();
|
||||
try
|
||||
{
|
||||
this->stop();
|
||||
_thread.join();
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
poco_unexpected();
|
||||
}
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user