1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 14:03:15 +02:00

Defer channel deletion until after i/o. There are some edge cases with events kicking users mid-event that can delete them.

This commit is contained in:
Adam
2015-09-17 10:07:30 -04:00
parent 8d13a355cd
commit 1ac4a1d9a5
5 changed files with 26 additions and 14 deletions
+1
View File
@@ -136,6 +136,7 @@ bool UplinkSocket::ProcessRead()
{
Anope::Process(buf);
User::QuitUsers();
Channel::DeleteChannels();
}
return b;
}