Fixup style a bit by moving { to the same line as if statements

This commit is contained in:
Matt Corallo 2017-02-04 16:44:05 -05:00
parent 8465631845
commit 2a962d4540

View file

@ -1066,21 +1066,18 @@ void CConnman::ThreadSocketHandler()
BOOST_FOREACH(CNode* pnode, vNodesDisconnectedCopy)
{
// wait until threads are done using it
if (pnode->GetRefCount() <= 0)
{
if (pnode->GetRefCount() <= 0) {
bool fDelete = false;
{
TRY_LOCK(pnode->cs_inventory, lockInv);
if (lockInv)
{
if (lockInv) {
TRY_LOCK(pnode->cs_vSend, lockSend);
if (lockSend) {
fDelete = true;
}
}
}
if (fDelete)
{
if (fDelete) {
vNodesDisconnected.remove(pnode);
DeleteNode(pnode);
}