summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-23 23:18:34 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-23 23:18:34 +0000
commit72da54c1c2a4f4b59d852e79adaee3348c4874ad (patch)
tree7ba309c49d14970a78e60384d2f9133b617ac69f /src/inspircd.cpp
parent74c8913f72e6d48c88a01155ef5fe5ca20cc2bb1 (diff)
Crash on /rehash fixed (old code in here passed NULL, 0 as argc, argv, this is BAD BAD BAD.)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6081 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 5cfb55ab1..c8be0d019 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -266,6 +266,10 @@ InspIRCd::InspIRCd(int argc, char** argv)
this->chanlist = new chan_hash();
this->Config = new ServerConfig(this);
+
+ this->Config->argv = argv;
+ this->Config->argc = argc;
+
this->Config->opertypes.clear();
this->Config->operclass.clear();
this->SNO = new SnomaskManager(this);