Browse Source

Add missing braces in semaphore posts in net

0.15
Matt Corallo 7 years ago
parent
commit
819b513a54
  1. 12
      src/net.cpp

12
src/net.cpp

@ -2319,13 +2319,17 @@ void CConnman::Interrupt() @@ -2319,13 +2319,17 @@ void CConnman::Interrupt()
interruptNet();
InterruptSocks5(true);
if (semOutbound)
for (int i=0; i<(nMaxOutbound + nMaxFeeler); i++)
if (semOutbound) {
for (int i=0; i<(nMaxOutbound + nMaxFeeler); i++) {
semOutbound->post();
}
}
if (semAddnode)
for (int i=0; i<nMaxAddnode; i++)
if (semAddnode) {
for (int i=0; i<nMaxAddnode; i++) {
semAddnode->post();
}
}
}
void CConnman::Stop()

Loading…
Cancel
Save