1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 06:36:40 +02:00

fixed a crash bug when a server squits

This commit is contained in:
lethality
2010-12-31 21:17:58 +00:00
parent 3019ba6f43
commit 57a06f72e2
+1 -1
View File
@@ -500,7 +500,7 @@ bool IRCdMessage::OnQuit(const Anope::string &source, const std::vector<Anope::s
bool IRCdMessage::OnSQuit(const Anope::string &source, const std::vector<Anope::string> &params)
{
const Anope::string &server = source;
const Anope::string &server = params[0];
Server *s = Server::Find(server);