mirror of
https://github.com/anope/anope.git
synced 2026-07-06 06:33:13 +02:00
BUILD : 1.7.4 (275) BUGS : 126 NOTES : Fixed the 3rd mem leak identified in this bug report, i didnt find the first two however :/
git-svn-id: svn://svn.anope.org/anope/trunk@275 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@178 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
58f85919b3
commit
313417e92a
@@ -4,6 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
|
||||
07/17 A Switched to autoconf for configure script. [ #00]
|
||||
07/05 A Warning when LocalAddress conflicts with RemoteServer. [#118]
|
||||
06/18 A Added proper Bahamut1.8 support. [ #55]
|
||||
07/22 F Free NSNickTracking when a user quits. [#126]
|
||||
07/22 F NOOP bug with wildcards. [#115]
|
||||
07/22 F Removed RESTRICTED from incorrectly labeled lang file entry. [#111]
|
||||
07/15 F Fixed the bug where /ns release didn't work with UseSVSHOLD. [#125]
|
||||
|
||||
+1
-1
@@ -1518,7 +1518,7 @@ static int delcore(NickCore * nc)
|
||||
free(nc->greet);
|
||||
if (nc->url)
|
||||
free(nc->url);
|
||||
|
||||
|
||||
if (nc->access) {
|
||||
for (i = 0; i < nc->accesscount; i++) {
|
||||
if (nc->access[i])
|
||||
|
||||
@@ -98,6 +98,7 @@ static User *new_user(const char *nick)
|
||||
alog("user: New maximum user count: %d", maxusercnt);
|
||||
}
|
||||
user->isSuperAdmin = 0; /* always set SuperAdmin to 0 for new users */
|
||||
user->nickTrack = NULL; /* ensure no default tracking nick */
|
||||
return user;
|
||||
}
|
||||
|
||||
@@ -424,6 +425,9 @@ void delete_user(User * user)
|
||||
ci = ci2;
|
||||
}
|
||||
|
||||
if (user->nickTrack)
|
||||
free(user->nickTrack);
|
||||
|
||||
moduleCleanStruct(user->moduleData);
|
||||
|
||||
if (debug >= 2)
|
||||
|
||||
+6
-1
@@ -8,10 +8,15 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="4"
|
||||
VERSION_BUILD="273"
|
||||
VERSION_BUILD="275"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.4 (275)
|
||||
# BUGS : 126
|
||||
# NOTES : Fixed the 3rd mem leak identified in this bug report, i didnt find the first two however :/
|
||||
#
|
||||
#
|
||||
# BUILD : 1.7.4 (273)
|
||||
# BUGS : 121
|
||||
# NOTES : Applied patch provided by Trystan for +A +H support on viagra
|
||||
|
||||
Reference in New Issue
Block a user