1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 12:13:14 +02:00

BUILD : 1.7.21 (1382) BUGS : 870 NOTES : Fixed memory leak in cs_akick().

git-svn-id: svn://svn.anope.org/anope/trunk@1382 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1097 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b
2008-02-11 21:10:09 +00:00
parent 2c82302421
commit 40bc328526
3 changed files with 9 additions and 1 deletions
+1
View File
@@ -34,6 +34,7 @@ Anope Version S V N
02/07 F NickServ replying to SVSNICK command when OperServ must. [#861]
02/11 F Fixed configure script so it will complain about args. [#864]
02/11 F Fixed memory leak in add_akill(). [#868]
02/11 F Fixed memory leak in cs_akick(). [#870]
Provided by Johno Crawford <johno.crawford@gmail.com> - 2008
02/08 F x86_64 generating improper SHA1 hash values. [#856]
+3
View File
@@ -317,6 +317,9 @@ int do_akick(User * u)
notice_lang(s_ChanServ, u, CHAN_AKICK_ENFORCE_DONE, chan,
count);
if (freemask)
free(mask);
} else if (stricmp(cmd, "STICK") == 0) {
NickAlias *na;
NickCore *nc;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
VERSION_BUILD="1381"
VERSION_BUILD="1382"
# $Log$
#
# BUILD : 1.7.21 (1382)
# BUGS : 870
# NOTES : Fixed memory leak in cs_akick().
#
# BUILD : 1.7.21 (1381)
# BUGS : 868
# NOTES : Fixed memory leak in add_akill().