From: brain Date: Sun, 19 Mar 2006 22:41:01 +0000 (+0000) Subject: Someone doesnt validate their input.... ;-p X-Git-Tag: v2.0.23~8359 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=f13826a95e9852ddbde748997970bc65d9bcb175;p=user%2Fhenk%2Fcode%2Finspircd.git Someone doesnt validate their input.... ;-p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3741 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_remove.cpp b/src/modules/m_remove.cpp index 5cbc38499..242aaefb3 100644 --- a/src/modules/m_remove.cpp +++ b/src/modules/m_remove.cpp @@ -60,10 +60,16 @@ class cmd_remove : public command_t userrec* target = Srv->FindNick(std::string(parameters[0])); /* And the channel we're meant to be removing them from */ chanrec* channel = Srv->FindChannel(std::string(parameters[1])); + + /* Fix by brain - someone needs to learn to validate their input! */ + if (!target || !channel) + return; + /* And see if the person calling the command has access to use it on the channel */ std::string privs = Srv->ChanMode(user, channel); /* Check what privs the person being removed has */ std::string targetprivs = Srv->ChanMode(target, channel); + int tlevel; int ulevel; int n = 2;