1
0
Fork 0

Forgotten m_SendChunksMediumPriority.empty() check.

This commit is contained in:
Howaner 2014-10-28 21:32:01 +01:00
parent d6c663cbc5
commit 373b139ed6
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ void cChunkSender::Execute(void)
while (!m_ShouldTerminate)
{
cCSLock Lock(m_CS);
while (m_ChunksReady.empty() && m_SendChunksLowPriority.empty() && m_SendChunksHighPriority.empty())
while (m_ChunksReady.empty() && m_SendChunksLowPriority.empty() && m_SendChunksMediumPriority.empty() && m_SendChunksHighPriority.empty())
{
int RemoveCount = m_RemoveCount;
m_RemoveCount = 0;