1
0
Fork 0

Added a missing return statement.

This commit is contained in:
madmaxoft 2014-05-01 22:02:45 +02:00
parent 9221b45898
commit 30e81156eb
1 changed files with 1 additions and 0 deletions

View File

@ -206,6 +206,7 @@ bool cRCONServer::cConnection::DataReceived(const char * a_Data, size_t a_Size)
}
m_Buffer.erase(0, Length + 4);
} // while (m_Buffer.size() >= 14)
return false;
}