From: est31 Date: Wed, 24 Jun 2015 20:45:52 +0000 (+0200) Subject: Return to ignore X-Git-Tag: 0.4.13~174 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3d43df99f1b706c836a43329d224d4b5b9ba5191;p=oweals%2Fminetest.git Return to ignore --- diff --git a/src/client.cpp b/src/client.cpp index de8131875..d2ec7017e 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -880,6 +880,7 @@ void Client::ProcessData(NetworkPacket *pkt) if (command >= TOCLIENT_NUM_MSG_TYPES) { infostream << "Client: Ignoring unknown command " << command << std::endl; + return; } /* diff --git a/src/server.cpp b/src/server.cpp index 52bc9867a..0e3d94fae 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -1206,6 +1206,7 @@ void Server::ProcessData(NetworkPacket *pkt) if (command >= TOSERVER_NUM_MSG_TYPES) { infostream << "Server: Ignoring unknown command " << command << std::endl; + return; } if (toServerCommandTable[command].state == TOSERVER_STATE_NOT_CONNECTED) {