1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 23:43:13 +02:00

BUILD : 1.7.6 (508) BUGS : 261 NOTES : docs fix to bug 261, seems to fix it for me, Certus care to test?

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@362 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-12-30 05:25:48 +00:00
parent ad8db21c15
commit 67aed6fdc2
3 changed files with 8 additions and 3 deletions
+1
View File
@@ -70,6 +70,7 @@ Provided by Anope Dev. <dev@anope.org> - 2004
Provided by DrStein <gacevedo@anope.org> - 2004
12/23 A NS STATUS will return your status if no nickname is given. [ #00]
12/30 F Loop overpassed in moduleDelData. [#261]
12/26 F Error message during SQL init even if UseRDB was disabled. [ #00]
12/10 F Extra tab in language files, causing bad answer in !seen. [#243]
11/28 F Fixes RSEND oddity. [#237]
+2 -2
View File
@@ -1887,7 +1887,6 @@ void moduleDelData(ModuleData **md, char *key)
if(key) {
while(current) {
next = current->next;
if((stricmp(current->moduleName,mod_name)==0) && (stricmp(current->key,key)==0)) {
if(prev) {
prev->next = current->next;
@@ -1901,6 +1900,7 @@ void moduleDelData(ModuleData **md, char *key)
free(current);
}
prev = current;
next = current->next;
current = next;
}
}
@@ -1921,7 +1921,6 @@ void moduleDelAllData(ModuleData **md)
ModuleData *next = NULL;
while(current) {
next = current->next;
if((stricmp(current->moduleName,mod_name)==0)) {
if(prev) {
prev->next = current->next;
@@ -1935,6 +1934,7 @@ void moduleDelAllData(ModuleData **md)
free(current);
}
prev = current;
next = current->next;
current = next;
}
free(mod_name);
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="6"
VERSION_BUILD="507"
VERSION_BUILD="508"
# $Log$
#
# BUILD : 1.7.6 (508)
# BUGS : 261
# NOTES : docs fix to bug 261, seems to fix it for me, Certus care to test?
#
# BUILD : 1.7.6 (507)
# BUGS : N/A
# NOTES : Fixed not freeing memory when a channel got deleted.