summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-24 12:20:02 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-24 12:20:02 +0200
commit86092ec5919a5b08391ea7291b9338b3745b6e0a (patch)
treef665fa3fad5899ed1663d8f5604e09f71989559f /src
parenta2860d06e429f35a4bacf4ea8a01eeeed1472285 (diff)
Change allocation of InspIRCd::SNO to be physically part of the object containing it using fakederef
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 553e09b73..d873916f4 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -126,7 +126,6 @@ void InspIRCd::Cleanup()
DeleteZero(this->FakeClient);
DeleteZero(this->Users);
DeleteZero(this->XLines);
- DeleteZero(this->SNO);
DeleteZero(this->Config);
SocketEngine::Deinit();
Logs->CloseLogs();
@@ -250,7 +249,6 @@ InspIRCd::InspIRCd(int argc, char** argv) :
// Initialize so that if we exit before proper initialization they're not deleted
this->Users = 0;
this->Config = 0;
- this->SNO = 0;
this->XLines = 0;
this->ConfigThread = NULL;
this->FakeClient = NULL;
@@ -264,7 +262,6 @@ InspIRCd::InspIRCd(int argc, char** argv) :
this->Users = new UserManager;
this->Config = new ServerConfig;
- this->SNO = new SnomaskManager;
dynamic_reference_base::reset_all();
this->XLines = new XLineManager;