mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 10:32:57 +01:00
#538 fixed ParallelSocketReactor dtor
This commit is contained in:
parent
b5658d3938
commit
135c10c0f5
@ -63,8 +63,15 @@ public:
|
||||
|
||||
~ParallelSocketReactor()
|
||||
{
|
||||
this->stop();
|
||||
_thread.join();
|
||||
try
|
||||
{
|
||||
this->stop();
|
||||
_thread.join();
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
poco_unexpected();
|
||||
}
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Loading…
Reference in New Issue
Block a user