mirror of
https://github.com/anope/anope.git
synced 2026-07-06 10:13:14 +02:00
Fixed bug #1144 - replaced some strcpy calls with strscpy to be safer
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2840 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+1
-1
@@ -1570,7 +1570,7 @@ int check_kick(User * user, char *chan, time_t chants)
|
||||
if (akick->flags & AK_ISNICK)
|
||||
get_idealban(ci, user, mask, sizeof(mask));
|
||||
else
|
||||
strcpy(mask, akick->u.mask);
|
||||
strscpy(mask, akick->u.mask, sizeof(mask));
|
||||
reason = akick->reason ? akick->reason : CSAutokickReason;
|
||||
goto kick;
|
||||
}
|
||||
|
||||
+1
-1
@@ -242,7 +242,7 @@ int MailValidate(const char *email)
|
||||
|
||||
if (!email)
|
||||
return 0;
|
||||
strcpy(copy, email);
|
||||
strscpy(copy, email, sizeof(copy));
|
||||
|
||||
domain = strchr(copy, '@');
|
||||
if (!domain)
|
||||
|
||||
+2
-1
@@ -9,10 +9,11 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="8"
|
||||
VERSION_PATCH="3"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="2837"
|
||||
VERSION_BUILD="2840"
|
||||
|
||||
# $Log$ # Changes since 1.8.3 Release
|
||||
|
||||
#Revision 2840 - Fixed bug #1144 - replaced some strcpy calls with strscpy to be safer
|
||||
#Revision 2837 - Log deleting and clearing XOP access lists
|
||||
#Revision 2836 - Document usage of the -protocoldebug option in services help
|
||||
#Revision 2834 - Removed some unused functions from extern.h and changed docs/IRCD to not tell lies
|
||||
|
||||
Reference in New Issue
Block a user