From 735f0ba6cf5602396bc2cabd6ceca0e92a0edd00 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 8 May 2013 18:26:23 -0400 Subject: [PATCH] Fix crash when we kill users because of a double free --- src/users.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/users.cpp b/src/users.cpp index bd376f6a1..ab8ac5777 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -727,9 +727,6 @@ void User::KillInternal(const Anope::string &source, const Anope::string &reason Log(this, "killed") << "was killed by " << source << " (Reason: " << reason << ")"; this->Quit(reason); - - this->quit = true; - quitting_users.push_back(this); } void User::Quit(const Anope::string &reason)