aboutsummaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorGravatar Attila Molnar2014-06-24 12:10:59 +0200
committerGravatar Attila Molnar2014-06-24 12:10:59 +0200
commit53f72298692a4b76d49327c8d696c8c2927c2a68 (patch)
tree58bade665acc624803997eafcb1c28f828c4be2d /src/inspircd.cpp
parentAdd the fakederef class (diff)
Change allocation of InspIRCd::Modes to be physically part of the object containing it using fakederef
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 6d072b0e5..8d0b8a649 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -125,7 +125,6 @@ void InspIRCd::Cleanup()
}
DeleteZero(this->FakeClient);
DeleteZero(this->Users);
- DeleteZero(this->Modes);
DeleteZero(this->XLines);
DeleteZero(this->Modules);
DeleteZero(this->SNO);
@@ -257,7 +256,6 @@ InspIRCd::InspIRCd(int argc, char** argv) :
this->SNO = 0;
this->Modules = 0;
this->XLines = 0;
- this->Modes = 0;
this->ConfigThread = NULL;
this->FakeClient = NULL;
@@ -397,8 +395,6 @@ InspIRCd::InspIRCd(int argc, char** argv) :
std::cout << "\tAttila" << con_reset << std::endl << std::endl;
std::cout << "Others:\t\t\t" << con_green << "See /INFO Output" << con_reset << std::endl;
- this->Modes = new ModeParser;
-
#ifndef _WIN32
if (!do_root)
this->CheckRoot();