1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 17:46:38 +02:00

BUILD : 1.7.6 (518) BUGS : 262 NOTES : CS ACCESS was also affected by the overflow

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@372 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-12-31 06:30:04 +00:00
parent 17d9d5a990
commit 59122c8ca2
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
11/19 A Added anope_cmd_ctcp() to code API, for sending CTCP messages. [ #00]
11/18 A Unable to use registered nicknames as bot nicks from now on. [ #00]
11/18 A NSAddAccessOnReg to control access list on registration. [ #00]
12/31 F Fixed integer overflow error with CS LEVELS. [#262]
12/31 F Fixed integer overflow error with CS ACCESS/LEVELS. [#262]
12/30 F Fixed moduleAddData using an old moduleData as list head. [#261]
12/30 F List handling of moduleData was bad on deletion. [#261]
12/30 F Few memleaks with moduleData functions returning early. [ #00]
+1 -1
View File
@@ -4028,7 +4028,7 @@ static int do_access(User * u)
ChanAccess *access;
int i;
short level = 0, ulev;
int level = 0, ulev;
int is_list = (cmd && stricmp(cmd, "LIST") == 0);
int is_servadmin = is_services_admin(u);
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
VERSION_BUILD="517"
VERSION_BUILD="518"
# $Log$
#
# BUILD : 1.7.6 (518)
# BUGS : 262
# NOTES : CS ACCESS was also affected by the overflow
#
# BUILD : 1.7.6 (517)
# BUGS : 262
# NOTES : Fixed integer overflow error with CS LEVELS.