diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-14 20:19:01 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-04-14 20:19:01 +0000 |
commit | 861db357fb1d10962cd49ec47e42599634c5f45f (patch) | |
tree | 84c05e36e5f1f9459876a47482fa938918608c17 /src/connection.cpp | |
parent | c854b6a0e182959223f1b602bdc0a745962b4d2b (diff) |
Authentication fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@589 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/connection.cpp')
-rw-r--r-- | src/connection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 6073b0a4a..737e11b8c 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -260,6 +260,7 @@ bool connection::SendPacket(char *message, char* host) bool connection::RecvPacket(std::deque<std::string> &messages, char* host) { char data[32767]; + memset(data, 0, 32767); for (int i = 0; i < this->connectors.size(); i++) { // returns false if the packet could not be sent (e.g. target host down) |