Fixed Coverity issues

This commit is contained in:
SChernykh
2022-02-22 00:38:08 +01:00
parent 9593311332
commit a73b4616a4
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -91,9 +91,13 @@ public:
}
}
FORCEINLINE ~Worker()
~Worker()
{
stop();
try {
stop();
}
catch (...) {
}
}
FORCEINLINE void stop()