|
@@ -87,9 +87,11 @@ void* Thread_Base::Thread_Base_Thread(void* pPara) {
|
|
}
|
|
}
|
|
catch (const std::exception& e) {
|
|
catch (const std::exception& e) {
|
|
ERR_LOG("[Thread] Exception: " << e.what());
|
|
ERR_LOG("[Thread] Exception: " << e.what());
|
|
|
|
+ return nullptr;
|
|
}
|
|
}
|
|
catch (...) {
|
|
catch (...) {
|
|
ERR_LOG("[Thread] Unknown exception");
|
|
ERR_LOG("[Thread] Unknown exception");
|
|
|
|
+ return nullptr;
|
|
}
|
|
}
|
|
return nullptr;
|
|
return nullptr;
|
|
}
|
|
}
|