mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
epee: do not propagate exception through dtor
Coverity 161867
This commit is contained in:
parent
0749a8bd3c
commit
2e2139ffb7
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ namespace epee
|
||||||
|
|
||||||
~async_stdin_reader()
|
~async_stdin_reader()
|
||||||
{
|
{
|
||||||
stop();
|
try { stop(); }
|
||||||
|
catch (...) { /* ignore */ }
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_READLINE
|
#ifdef HAVE_READLINE
|
||||||
|
|
Loading…
Reference in a new issue