Add missing braces in semaphore posts in net

Github-Pull: #9953
Rebased-From: 819b513a54
This commit is contained in:
Matt Corallo
2017-03-08 14:55:28 -05:00
parent d2548a4f97
commit 4e2502bb51

View File

@@ -2318,14 +2318,18 @@ 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()
{ {