1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 20:03:13 +02:00

BUILD : 1.7.19 (1254) BUGS : 741 NOTES : Fixed a possible buffer overflow in inspircd10.c

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@973 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-07-09 11:14:44 +00:00
parent 2a0c54c27c
commit 782aed6801
3 changed files with 8 additions and 3 deletions
+1
View File
@@ -6,6 +6,7 @@ Anope Version S V N
06/18 F OperServ MODINFO giving misleading errors. [#732]
07/09 F Various access levels for oper-commands. [#729]
07/09 F GlobalOnCycle notices being sent to Anope itself or juped servers.[#737]
07/09 F Possible buffer overflow in inspircd10.c [#741]
Anope Version 1.7.19
--------------------
+2 -2
View File
@@ -703,8 +703,8 @@ int anope_event_fjoin(char *source, int ac, char **av)
for (i = 2; i < ac; i++)
{
if (i > 2)
strncat(people," ",1024);
strncat(people,av[i],1024);
strncat(people," ",1023);
strncat(people,av[i],1023);
}
do_sjoin(source, 4, newav);
return MOD_CONT;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1253"
VERSION_BUILD="1254"
# $Log$
#
# BUILD : 1.7.19 (1254)
# BUGS : 741
# NOTES : Fixed a possible buffer overflow in inspircd10.c
#
# BUILD : 1.7.19 (1253)
# BUGS : 737
# NOTES : Fixed GlobalOnCycle notices being sent to Anope itself and juped servers