From c46cc97913f43ed622e160b567b831f7fda82095 Mon Sep 17 00:00:00 2001 From: FuckYou Date: Fri, 29 Sep 2017 07:38:12 +0200 Subject: [PATCH] Fixed issue where sending a string didn't include a null terminator --- CPPTools/Net.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CPPTools/Net.cpp b/CPPTools/Net.cpp index efd1564..14742cd 100644 --- a/CPPTools/Net.cpp +++ b/CPPTools/Net.cpp @@ -154,11 +154,11 @@ namespace IO { } if (!canWrite) return false; char* msg = encrypted ? Crypto::full_auto_encrypt(message, size, pK, &size) : (char*)message; - _write(msg, size); + _write(msg, size + encrypted); if (encrypted) delete[] msg; return true; } - bool NetClient::write(char* message) { return write(message, strlen(message)); } + bool NetClient::write(char* message) { return write(message, strlen(message)+1); } // Send together with the null-terminator bool NetClient::writeBufferedPackets() { for (size_t t = 0; t < outPacketBuf->size(); ++t) if (!write(outPacketBuf->at(t).message, outPacketBuf->at(t).size)) { delete outPacketBuf; return false; }; delete outPacketBuf;