mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4459
bcf3f6af
fuzz_tests: catch unhandled exceptions (moneromooo-monero)3ebd05d4
miner: restore stream flags after changing them (moneromooo-monero)a093092e
levin_protocol_handler_async: do not propagate exception through dtor (moneromooo-monero)1eebb82b
net_helper: do not propagate exceptions through dtor (moneromooo-monero)fb6a3630
miner: do not propagate exceptions through dtor (moneromooo-monero)2e2139ff
epee: do not propagate exception through dtor (moneromooo-monero)0749a8bd
db_lmdb: do not propagate exceptions in dtor (moneromooo-monero)1b0afeeb
wallet_rpc_server: exit cleanly on unhandled exceptions (moneromooo-monero)418a9936
unit_tests: catch unhandled exceptions (moneromooo-monero)ea7f9543
threadpool: do not propagate exceptions through the dtor (moneromooo-monero)6e855422
gen_multisig: nice exit on unhandled exception (moneromooo-monero)53df2deb
db_lmdb: catch error in mdb_stat calls during migration (moneromooo-monero)e67016dd
blockchain_blackball: catch failure to commit db transaction (moneromooo-monero)661439f4
mlog: don't remove old logs if we failed to rename the current file (moneromooo-monero)5fdcda50
easylogging++: test for NULL before dereference (moneromooo-monero)7ece1550
performance_test: fix bad last argument calling add_arg (moneromooo-monero)a085da32
unit_tests: add check for page size > 0 before dividing (moneromooo-monero)d8b1ec8b
unit_tests: use std::shared_ptr to shut coverity up about leaks (moneromooo-monero)02563bf4
simplewallet: top level exception catcher to print nicer messages (moneromooo-monero)c57a65b2
blockchain_blackball: fix shift range for 32 bit archs (moneromooo-monero)
This commit is contained in:
parent
9a54d0033e
commit
effcbf2060
16 changed files with 101 additions and 56 deletions
|
@ -63,7 +63,8 @@ namespace epee
|
|||
|
||||
~async_stdin_reader()
|
||||
{
|
||||
stop();
|
||||
try { stop(); }
|
||||
catch (...) { /* ignore */ }
|
||||
}
|
||||
|
||||
#ifdef HAVE_READLINE
|
||||
|
|
|
@ -275,6 +275,9 @@ public:
|
|||
}
|
||||
virtual ~async_protocol_handler()
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
m_deletion_initiated = true;
|
||||
if(m_connection_initialized)
|
||||
{
|
||||
|
@ -288,6 +291,9 @@ public:
|
|||
CHECK_AND_ASSERT_MES_NO_RET(0 == boost::interprocess::ipcdetail::atomic_read32(&m_wait_count), "Failed to wait for operation completion. m_wait_count = " << m_wait_count);
|
||||
|
||||
MTRACE(m_connection_context << "~async_protocol_handler()");
|
||||
|
||||
}
|
||||
catch (...) { /* ignore */ }
|
||||
}
|
||||
|
||||
bool start_outer_call()
|
||||
|
|
|
@ -106,7 +106,8 @@ namespace net_utils
|
|||
~blocked_mode_client()
|
||||
{
|
||||
//profile_tools::local_coast lc("~blocked_mode_client()", 3);
|
||||
shutdown();
|
||||
try { shutdown(); }
|
||||
catch(...) { /* ignore */ }
|
||||
}
|
||||
|
||||
inline
|
||||
|
|
|
@ -137,7 +137,12 @@ void mlog_configure(const std::string &filename_base, bool console, const std::s
|
|||
el::Loggers::addFlag(el::LoggingFlag::StrictLogFileSizeCheck);
|
||||
el::Helpers::installPreRollOutCallback([filename_base, max_log_files](const char *name, size_t){
|
||||
std::string rname = generate_log_filename(filename_base.c_str());
|
||||
rename(name, rname.c_str());
|
||||
int ret = rename(name, rname.c_str());
|
||||
if (ret < 0)
|
||||
{
|
||||
// can't log a failure, but don't do the file removal below
|
||||
return;
|
||||
}
|
||||
if (max_log_files != 0)
|
||||
{
|
||||
std::vector<boost::filesystem::path> found_files;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue