From a59d08fffd3dc8a9850ce34c9928fb6382b9b37f Mon Sep 17 00:00:00 2001 From: danieldg Date: Sun, 18 Oct 2009 16:01:33 +0000 Subject: Remove VF_SERVICEPROVIDER, prevent heap allocation of ConfigReader git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11904 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_censor.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/modules/m_censor.cpp') diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp index 398241475..faf2a4200 100644 --- a/src/modules/m_censor.cpp +++ b/src/modules/m_censor.cpp @@ -114,17 +114,15 @@ class ModuleCensor : public Module * reload our config file on rehash - we must destroy and re-allocate the classes * to call the constructor again and re-read our data. */ - ConfigReader* MyConf = new ConfigReader; + ConfigReader MyConf; censors.clear(); - for (int index = 0; index < MyConf->Enumerate("badword"); index++) + for (int index = 0; index < MyConf.Enumerate("badword"); index++) { - irc::string pattern = (MyConf->ReadValue("badword","text",index)).c_str(); - irc::string replace = (MyConf->ReadValue("badword","replace",index)).c_str(); + irc::string pattern = (MyConf.ReadValue("badword","text",index)).c_str(); + irc::string replace = (MyConf.ReadValue("badword","replace",index)).c_str(); censors[pattern] = replace; } - - delete MyConf; } virtual Version GetVersion() -- cgit v1.3.1-10-gc9f91