mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Avoid core dump if rpc port is in use.
The cleanup code needs to check for NULL rpcworkers thread group.
This commit is contained in:
parent
b9beea6e9d
commit
b2ba55c42b
@ -881,7 +881,8 @@ void StopRPCThreads()
|
||||
|
||||
deadlineTimers.clear();
|
||||
rpc_io_service->stop();
|
||||
rpc_worker_group->join_all();
|
||||
if (rpc_worker_group != NULL)
|
||||
rpc_worker_group->join_all();
|
||||
delete rpc_worker_group; rpc_worker_group = NULL;
|
||||
delete rpc_ssl_context; rpc_ssl_context = NULL;
|
||||
delete rpc_io_service; rpc_io_service = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user