Close connection when zone validation fails.

This commit is contained in:
Bartosz Taudul 2019-01-14 23:12:11 +01:00
parent c3b67e4482
commit 4dc339c933

View File

@ -1556,7 +1556,7 @@ void Worker::Exec()
while( ptr < end )
{
auto ev = (const QueueItem*)ptr;
DispatchProcess( *ev, ptr );
if( !DispatchProcess( *ev, ptr ) ) goto close;
}
m_bufferOffset += sz;