summaryrefslogtreecommitdiff
path: root/src/commands/cmd_zline.cpp
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-11 13:04:13 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-11 13:04:13 +0000
commit04e8f8fd991804d38975f54ddd1879809bf94bac (patch)
treedc0d966955c948a4b9b588c8f2106e5226259c3d /src/commands/cmd_zline.cpp
parent539f90e026f2178cc53d15c7d2fc9afe8fd48b1d (diff)
Fix trampling on memory in Z/G/K/ELine.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8901 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_zline.cpp')
-rw-r--r--src/commands/cmd_zline.cpp26
1 files changed, 14 insertions, 12 deletions
diff --git a/src/commands/cmd_zline.cpp b/src/commands/cmd_zline.cpp
index a9f76a932..2a12ee5b5 100644
--- a/src/commands/cmd_zline.cpp
+++ b/src/commands/cmd_zline.cpp
@@ -24,28 +24,30 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance)
CmdResult CommandZline::Handle (const char** parameters, int pcnt, User *user)
{
+ std::string target = parameters[0];
+
if (pcnt >= 3)
{
- if (strchr(parameters[0],'@') || strchr(parameters[0],'!'))
+ if (strchr(target.c_str(),'@') || strchr(target.c_str(),'!'))
{
user->WriteServ("NOTICE %s :*** You cannot include a username or nickname in a zline, a zline must ban only an IP mask",user->nick);
return CMD_FAILURE;
}
- User *u = ServerInstance->FindNick(parameters[0]);
+ User *u = ServerInstance->FindNick(target.c_str());
if (u)
{
- parameters[0] = u->GetIPString();
+ target = u->GetIPString();
}
- if (ServerInstance->IPMatchesEveryone(parameters[0],user))
+ if (ServerInstance->IPMatchesEveryone(target.c_str(),user))
return CMD_FAILURE;
long duration = ServerInstance->Duration(parameters[1]);
- const char* ipaddr = parameters[0];
- User* find = ServerInstance->FindNick(parameters[0]);
+ const char* ipaddr = target.c_str();
+ User* find = ServerInstance->FindNick(target.c_str());
if (find)
{
@@ -65,12 +67,12 @@ CmdResult CommandZline::Handle (const char** parameters, int pcnt, User *user)
{
if (!duration)
{
- ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Z-line for %s.",user->nick,parameters[0]);
+ ServerInstance->SNO->WriteToSnoMask('x',"%s added permanent Z-line for %s.",user->nick,target.c_str());
}
else
{
time_t c_requires_crap = duration + ServerInstance->Time();
- ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Z-line for %s, expires on %s",user->nick,parameters[0],
+ ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Z-line for %s, expires on %s",user->nick,target.c_str(),
ServerInstance->TimeString(c_requires_crap).c_str());
}
ServerInstance->XLines->ApplyLines();
@@ -78,18 +80,18 @@ CmdResult CommandZline::Handle (const char** parameters, int pcnt, User *user)
else
{
delete zl;
- user->WriteServ("NOTICE %s :*** Z-Line for %s already exists",user->nick,parameters[0]);
+ user->WriteServ("NOTICE %s :*** Z-Line for %s already exists",user->nick,target.c_str());
}
}
else
{
- if (ServerInstance->XLines->DelLine(parameters[0],"Z",user))
+ if (ServerInstance->XLines->DelLine(target.c_str(),"Z",user))
{
- ServerInstance->SNO->WriteToSnoMask('x',"%s Removed Z-line on %s.",user->nick,parameters[0]);
+ ServerInstance->SNO->WriteToSnoMask('x',"%s Removed Z-line on %s.",user->nick,target.c_str());
}
else
{
- user->WriteServ("NOTICE %s :*** Z-Line %s not found in list, try /stats Z.",user->nick,parameters[0]);
+ user->WriteServ("NOTICE %s :*** Z-Line %s not found in list, try /stats Z.",user->nick,target.c_str());
return CMD_FAILURE;
}
}