mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
rpc: do not propagate exceptions out of a dtor
Coverity 205415
This commit is contained in:
parent
3c849188ab
commit
d56a483abe
1 changed files with 8 additions and 4 deletions
|
@ -86,10 +86,14 @@ namespace
|
||||||
RPCTracker(const char *rpc, tools::LoggingPerformanceTimer &timer): rpc(rpc), timer(timer) {
|
RPCTracker(const char *rpc, tools::LoggingPerformanceTimer &timer): rpc(rpc), timer(timer) {
|
||||||
}
|
}
|
||||||
~RPCTracker() {
|
~RPCTracker() {
|
||||||
boost::unique_lock<boost::mutex> lock(mutex);
|
try
|
||||||
auto &e = tracker[rpc];
|
{
|
||||||
++e.count;
|
boost::unique_lock<boost::mutex> lock(mutex);
|
||||||
e.time += timer.value();
|
auto &e = tracker[rpc];
|
||||||
|
++e.count;
|
||||||
|
e.time += timer.value();
|
||||||
|
}
|
||||||
|
catch (...) { /* ignore */ }
|
||||||
}
|
}
|
||||||
void pay(uint64_t amount) {
|
void pay(uint64_t amount) {
|
||||||
boost::unique_lock<boost::mutex> lock(mutex);
|
boost::unique_lock<boost::mutex> lock(mutex);
|
||||||
|
|
Loading…
Reference in a new issue