diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/command_parse.cpp | 8 | ||||
-rw-r--r-- | src/users.cpp | 3 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp index b483c410b..8e704e796 100644 --- a/src/command_parse.cpp +++ b/src/command_parse.cpp @@ -326,9 +326,11 @@ void CommandParser::ProcessBuffer(std::string &buffer,userrec *user) while ((a = buffer.find("\r")) != std::string::npos) buffer.erase(a); - log(DEBUG,"CMDIN: %s %s",user->nick,buffer.c_str()); - - this->ProcessCommand(user,buffer); + if (buffer.length()) + { + log(DEBUG,"CMDIN: %s %s",user->nick,buffer.c_str()); + this->ProcessCommand(user,buffer); + } } bool CommandParser::CreateCommand(command_t *f) diff --git a/src/users.cpp b/src/users.cpp index c3d763855..e3104b0d4 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -407,7 +407,8 @@ bool userrec::AddBuffer(const std::string &a) b += *i; } - recvq.append(b); + if (b.length()) + recvq.append(b); if (recvq.length() > (unsigned)this->recvqmax) { |