Add missing LOCK(cs_main)

Rebased-By: Wladimir J. van der Laan <laanwj@gmail.com>
Rebased-From: 305ccaa
This commit is contained in:
Pieter Wuille 2014-05-20 21:45:12 +02:00 committed by langerhans
parent 74b9211caf
commit e52d5c58a0

View file

@ -3577,7 +3577,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
return true;
}
State(pfrom->GetId())->nLastBlockProcess = GetTimeMicros();
{
LOCK(cs_main);
State(pfrom->GetId())->nLastBlockProcess = GetTimeMicros();
}