diff options
author | madmaxoft <github@xoft.cz> | 2014-02-05 13:54:47 +0100 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-02-05 13:54:47 +0100 |
commit | 9e98c9691d2ce48fa8b74b120db8a1bb991ceb71 (patch) | |
tree | 5612f841a4d39cb3b68c29f733380342f1a366c4 /src | |
parent | Added cPluginManager:LogStackTrace() to the Lua API. (diff) | |
download | cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar.gz cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar.bz2 cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar.lz cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar.xz cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.tar.zst cuberite-9e98c9691d2ce48fa8b74b120db8a1bb991ceb71.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/Protocol/Protocol17x.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp index 52c0099ed..57da48e49 100644 --- a/src/Protocol/Protocol17x.cpp +++ b/src/Protocol/Protocol17x.cpp @@ -99,7 +99,7 @@ void cProtocol172::DataReceived(const char * a_Data, int a_Size) Byte Decrypted[512]; while (a_Size > 0) { - int NumBytes = (a_Size > (int)sizeof(Decrypted)) ? (int)sizeof(Decrypted) : a_Size; + size_t NumBytes = (a_Size > sizeof(Decrypted)) ? sizeof(Decrypted) : a_Size; m_Decryptor.ProcessData(Decrypted, (Byte *)a_Data, NumBytes); AddReceivedData((const char *)Decrypted, NumBytes); a_Size -= NumBytes; @@ -1836,7 +1836,7 @@ void cProtocol172::SendData(const char * a_Data, int a_Size) Byte Encrypted[8192]; // Larger buffer, we may be sending lots of data (chunks) while (a_Size > 0) { - int NumBytes = (a_Size > (int)sizeof(Encrypted)) ? (int)sizeof(Encrypted) : a_Size; + size_t NumBytes = ((size_t)a_Size > sizeof(Encrypted)) ? sizeof(Encrypted) : (size_t)a_Size; m_Encryptor.ProcessData(Encrypted, (Byte *)a_Data, NumBytes); m_Client->SendData((const char *)Encrypted, NumBytes); a_Size -= NumBytes; |