1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 18:43:12 +02:00

fixed some uninitialized pointers

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2785 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
DukePyrolator
2010-02-07 00:03:10 +00:00
parent 6b2f9e25cd
commit f4db8c5360
+4 -6
View File
@@ -92,7 +92,6 @@ class CommandCSEnforce : public Command
int16 old_nojoin_level;
char mask[BUFSIZE];
const char *reason;
User *u;
if (!(ci = c->ci))
return;
@@ -109,10 +108,10 @@ class CommandCSEnforce : public Command
if (check_access(uc->user, ci, CA_NOJOIN))
{
get_idealban(ci, u, mask, sizeof(mask));
reason = getstring(u, CHAN_NOT_ALLOWED_TO_JOIN);
get_idealban(ci, uc->user, mask, sizeof(mask));
reason = getstring(uc->user, CHAN_NOT_ALLOWED_TO_JOIN);
c->SetMode(NULL, CMODE_BAN, mask);
c->Kick(NULL, u, "%s", reason);
c->Kick(NULL, uc->user, "%s", reason);
}
}
@@ -124,7 +123,6 @@ class CommandCSEnforce : public Command
ChannelInfo *ci;
char mask[BUFSIZE];
const char *reason;
User *u;
if (!(ci = c->ci))
return;
@@ -143,7 +141,7 @@ class CommandCSEnforce : public Command
{
c->SetMode(NULL, CMODE_BAN, mask);
}
c->Kick(NULL, u, "%s", reason);
c->Kick(NULL, uc->user, "%s", reason);
}
}
}