mirror of
https://github.com/monero-project/monero.git
synced 2025-06-21 06:04:11 -04:00
Merge pull request #4853
2b3595d0
various: do not propagate exception through dtor (moneromooo-monero)
This commit is contained in:
commit
398f7076bb
4 changed files with 11 additions and 4 deletions
|
@ -55,7 +55,8 @@ public:
|
|||
{
|
||||
if (m_ok)
|
||||
{
|
||||
mp_http_client->disconnect();
|
||||
try { mp_http_client->disconnect(); }
|
||||
catch (...) { /* do not propagate through dtor */ }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue