diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:27:40 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-13 15:27:40 +0200 |
commit | 467b276d9d0407ec412262525c43c28d47fdae2f (patch) | |
tree | aaaa348fa1c2ea635b9e3b3ae29d9ef57d5e0dae /src/inspircd.cpp | |
parent | caa0c27a5a485151a0de21e700680c1e46ab85b4 (diff) |
Change allocation of InspIRCd::BanCache to be physically part of the object containing it
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index c878138fe..898b4f455 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -133,7 +133,6 @@ void InspIRCd::Cleanup() DeleteZero(this->XLines); DeleteZero(this->Parser); DeleteZero(this->Modules); - DeleteZero(this->BanCache); DeleteZero(this->SNO); DeleteZero(this->Config); DeleteZero(this->PI); @@ -262,7 +261,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : this->Users = 0; this->Config = 0; this->SNO = 0; - this->BanCache = 0; this->Modules = 0; this->Parser = 0; this->XLines = 0; @@ -286,7 +284,6 @@ InspIRCd::InspIRCd(int argc, char** argv) : this->Config = new ServerConfig; this->SNO = new SnomaskManager; - this->BanCache = new BanCacheManager; this->Modules = new ModuleManager(); dynamic_reference_base::reset_all(); this->Parser = new CommandParser; |