Add missing braces in semaphore posts in net

This commit is contained in:
Matt Corallo 2017-03-08 14:55:28 -05:00
parent e007b243c4
commit 819b513a54
1 changed files with 8 additions and 4 deletions

View File

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