Remove empty permanent channels when m_permchannels is unloaded

git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11624 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
danieldg 2009-09-02 00:47:54 +00:00
parent 94bb5343b1
commit 77ead8fe33

View File

@ -93,6 +93,25 @@ public:
virtual ~ModulePermanentChannels()
{
ServerInstance->Modes->DelMode(&p);
/*
* DelMode can't remove the +P mode on empty channels, or it will break
* merging modes with remote servers. Remove the empty channels now as
* we know this is not the case.
*/
chan_hash::iterator iter = ServerInstance->chanlist->begin();
while (iter != ServerInstance->chanlist->end())
{
Channel* c = iter->second;
if (c->GetUserCounter() == 0)
{
chan_hash::iterator at = iter;
iter++;
ServerInstance->chanlist->erase(at);
delete c;
}
else
iter++;
}
}
virtual void OnRehash(User *user)