mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
Remove/fix calls to std::abort() (#648)
This commit is contained in:
@@ -877,10 +877,8 @@ void recvThread(broadcast_ctx_t &ctx) {
|
||||
}
|
||||
|
||||
if(ec || !bytes) {
|
||||
BOOST_LOG(fatal) << "Couldn't receive data from udp socket: "sv << ec.message();
|
||||
|
||||
log_flush();
|
||||
std::abort();
|
||||
BOOST_LOG(error) << "Couldn't receive data from udp socket: "sv << ec.message();
|
||||
return;
|
||||
}
|
||||
|
||||
auto it = peer_to_session.find(peer.address());
|
||||
|
||||
Reference in New Issue
Block a user