1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 04:16:39 +02:00

Modules now delete themselves instead of letting the core do it (just incase one of them has used a custom delete operator)

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1729 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
robbeh
2008-11-15 21:25:40 +00:00
parent f0fe5427ff
commit 2d768eb325
5 changed files with 54 additions and 14 deletions
-6
View File
@@ -69,12 +69,6 @@ Module::~Module()
remove(this->filename.c_str());
if (this->handle)
{
if ((ano_modclose(this->handle)) != 0)
alog("%s", ano_moderr());
}
int idx;
CommandHash *current = NULL;
EvtHookHash *ehcurrent = NULL;