mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #4459
bcf3f6affuzz_tests: catch unhandled exceptions (moneromooo-monero)3ebd05d4miner: restore stream flags after changing them (moneromooo-monero)a093092elevin_protocol_handler_async: do not propagate exception through dtor (moneromooo-monero)1eebb82bnet_helper: do not propagate exceptions through dtor (moneromooo-monero)fb6a3630miner: do not propagate exceptions through dtor (moneromooo-monero)2e2139ffepee: do not propagate exception through dtor (moneromooo-monero)0749a8bddb_lmdb: do not propagate exceptions in dtor (moneromooo-monero)1b0afeebwallet_rpc_server: exit cleanly on unhandled exceptions (moneromooo-monero)418a9936unit_tests: catch unhandled exceptions (moneromooo-monero)ea7f9543threadpool: do not propagate exceptions through the dtor (moneromooo-monero)6e855422gen_multisig: nice exit on unhandled exception (moneromooo-monero)53df2debdb_lmdb: catch error in mdb_stat calls during migration (moneromooo-monero)e67016ddblockchain_blackball: catch failure to commit db transaction (moneromooo-monero)661439f4mlog: don't remove old logs if we failed to rename the current file (moneromooo-monero)5fdcda50easylogging++: test for NULL before dereference (moneromooo-monero)7ece1550performance_test: fix bad last argument calling add_arg (moneromooo-monero)a085da32unit_tests: add check for page size > 0 before dividing (moneromooo-monero)d8b1ec8bunit_tests: use std::shared_ptr to shut coverity up about leaks (moneromooo-monero)02563bf4simplewallet: top level exception catcher to print nicer messages (moneromooo-monero)c57a65b2blockchain_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
|
|
@ -46,6 +46,8 @@ static int __AFL_LOOP(int)
|
|||
|
||||
int run_fuzzer(int argc, const char **argv, Fuzzer &fuzzer)
|
||||
{
|
||||
TRY_ENTRY();
|
||||
|
||||
if (argc < 2)
|
||||
{
|
||||
std::cout << "usage: " << argv[0] << " " << "<filename>" << std::endl;
|
||||
|
|
@ -69,4 +71,6 @@ int run_fuzzer(int argc, const char **argv, Fuzzer &fuzzer)
|
|||
}
|
||||
|
||||
return 0;
|
||||
|
||||
CATCH_ENTRY_L0("run_fuzzer", 1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue