mirror of
https://github.com/anope/anope.git
synced 2026-07-04 02:43:12 +02:00
Fix a crash introduced in r2679 cause by is_on_access messing up the users host buffers
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/stable@2743 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+1
-1
@@ -1296,7 +1296,7 @@ int is_on_access(User * u, NickCore * nc)
|
||||
if (u->chost)
|
||||
{
|
||||
buf3 = scalloc(strlen(u->username) + strlen(u->chost) + 2, 1);
|
||||
sprintf(buf2, "%s@%s", u->username, u->chost);
|
||||
sprintf(buf3, "%s@%s", u->username, u->chost);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+2
-1
@@ -9,9 +9,10 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="8"
|
||||
VERSION_PATCH="2"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="2735"
|
||||
VERSION_BUILD="2743"
|
||||
|
||||
# $Log$ # Changes since 1.8.2 Release
|
||||
#Revision 2743 - Fix a crash introduced in r2679 cause by is_on_access messing up the users host buffers
|
||||
#Revision 2735 - Added two missing language strings to de.l and ru.l
|
||||
#Revision 2734 - Made elist_match_user also check against the users cloaked host
|
||||
#Revision 2731 - Mark users as unrecognized on Inspircd 1.2 if no/invalid metadata is recieved for them before the next uid/eob
|
||||
|
||||
Reference in New Issue
Block a user