mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-23 21:34:45 +00:00
Do not signal outbound semaphore if uninitialized
This commit is contained in:
parent
45dcf63a62
commit
89b5616d10
@ -1887,8 +1887,9 @@ bool StopNode()
|
|||||||
fShutdown = true;
|
fShutdown = true;
|
||||||
nTransactionsUpdated++;
|
nTransactionsUpdated++;
|
||||||
int64 nStart = GetTime();
|
int64 nStart = GetTime();
|
||||||
for (int i=0; i<MAX_OUTBOUND_CONNECTIONS; i++)
|
if (semOutbound)
|
||||||
semOutbound->post();
|
for (int i=0; i<MAX_OUTBOUND_CONNECTIONS; i++)
|
||||||
|
semOutbound->post();
|
||||||
do
|
do
|
||||||
{
|
{
|
||||||
int nThreadsRunning = 0;
|
int nThreadsRunning = 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user