mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
net_helper: do not propagate exceptions through dtor
Coverity 161864
This commit is contained in:
parent
fb6a363050
commit
1eebb82bcc
1 changed files with 2 additions and 1 deletions
|
@ -106,7 +106,8 @@ namespace net_utils
|
||||||
~blocked_mode_client()
|
~blocked_mode_client()
|
||||||
{
|
{
|
||||||
//profile_tools::local_coast lc("~blocked_mode_client()", 3);
|
//profile_tools::local_coast lc("~blocked_mode_client()", 3);
|
||||||
shutdown();
|
try { shutdown(); }
|
||||||
|
catch(...) { /* ignore */ }
|
||||||
}
|
}
|
||||||
|
|
||||||
inline
|
inline
|
||||||
|
|
Loading…
Reference in a new issue