1
0
mirror of https://github.com/anope/anope.git synced 2026-07-01 23:06:38 +02:00

BUILD : 1.7.14 (1060) BUGS : 523 NOTES : Module data was cleared before calling AnopeFini, thus being evil to saving-routines and such (like in ns_noop)

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@784 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-06-18 21:44:05 +00:00
parent 02db7e6438
commit ad0a95da48
3 changed files with 11 additions and 6 deletions
+1
View File
@@ -30,6 +30,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
06/16 F Fixed typo in function name. [#524]
06/18 F Removed legacy my_vsnprintf code. [#496]
06/18 F HOP cannot remove VOPs anymore to be consitent with adding. [#525]
06/18 F Moduledata was cleared before calling AnopeFini. [#523]
Provided by ThaPrince <jon@vile.com> - 2006
05/19 A Plexus 3 support. [ #00]
+5 -5
View File
@@ -238,11 +238,6 @@ void modules_unload_all(boolean fini)
while (mh) {
next = mh->next;
if(fini) {
if (prepForUnload(mh->m) != MOD_ERR_OK) {
mh = next;
continue;
}
func = (void (*)(void))ano_modsym(mh->m->handle, "AnopeFini");
if (func) {
mod_current_module_name = mh->m->name;
@@ -250,6 +245,11 @@ void modules_unload_all(boolean fini)
mod_current_module_name = NULL;
}
if (prepForUnload(mh->m) != MOD_ERR_OK) {
mh = next;
continue;
}
if ((ano_modclose(mh->m->handle)) != 0)
alog(ano_moderr());
else
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
VERSION_BUILD="1059"
VERSION_BUILD="1060"
# $Log$
#
# BUILD : 1.7.14 (1060)
# BUGS : 523
# NOTES : Module data was cleared before calling AnopeFini, thus being evil to saving-routines and such (like in ns_noop)
#
# BUILD : 1.7.14 (1059)
# BUGS : 525
# NOTES : In cs_xop, copied the check from ADD to DEL, so you still need AOP to remove people from any XOP list (HOP could delete VOP)