diff options
Diffstat (limited to 'src/common/http_connection.h')
-rw-r--r-- | src/common/http_connection.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/http_connection.h b/src/common/http_connection.h index 9fc6be261..554dd832b 100644 --- a/src/common/http_connection.h +++ b/src/common/http_connection.h @@ -55,7 +55,8 @@ public: { if (m_ok) { - mp_http_client->disconnect(); + try { mp_http_client->disconnect(); } + catch (...) { /* do not propagate through dtor */ } } } |