From 713c73970d93990e40555764ff868ff83182f6ef Mon Sep 17 00:00:00 2001 From: faketruth Date: Wed, 2 Nov 2011 01:20:40 +0000 Subject: Fixed crash when client only sends a space in the chat git-svn-id: http://mc-server.googlecode.com/svn/trunk@44 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/cLuaCommandBinder.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source') diff --git a/source/cLuaCommandBinder.cpp b/source/cLuaCommandBinder.cpp index a800513e1..b3f20cbdc 100644 --- a/source/cLuaCommandBinder.cpp +++ b/source/cLuaCommandBinder.cpp @@ -53,6 +53,8 @@ bool cLuaCommandBinder::BindCommand( const std::string & a_Command, const std::s bool cLuaCommandBinder::HandleCommand( const std::string & a_Command, cPlayer* a_Player ) { std::vector Split = StringSplit( a_Command, " "); + if( Split.size() == 0 ) return false; + CommandMap::iterator FoundCommand = m_BoundCommands.find( Split[0] ); if( FoundCommand != m_BoundCommands.end() ) { -- cgit v1.2.3