]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix the HELPOP database being destroyed when a rehash fails.
authorPeter Powell <petpow@saberuk.com>
Thu, 26 Dec 2013 11:28:22 +0000 (11:28 +0000)
committerPeter Powell <petpow@saberuk.com>
Fri, 27 Dec 2013 15:25:42 +0000 (15:25 +0000)
src/modules/m_helpop.cpp

index 92abcd76f9582bb589765028a153b38ba4c8874b..4bbe8785e4ef4f7b2f22d059b56f81682eb8d6fe 100644 (file)
@@ -99,7 +99,6 @@ class CommandHelpop : public Command
 class ModuleHelpop : public Module
 {
        private:
-               std::string  h_file;
                CommandHelpop cmd;
                Helpop ho;
 
@@ -120,7 +119,7 @@ class ModuleHelpop : public Module
 
                void ReadConfig()
                {
-                       helpop_map.clear();
+                       std::map<irc::string, std::string> help;
 
                        ConfigTagList tags = ServerInstance->Config->ConfTags("helpop");
                        for(ConfigIter i = tags.first; i != tags.second; ++i)
@@ -135,20 +134,21 @@ class ModuleHelpop : public Module
                                        throw ModuleException("m_helpop: The key 'index' is reserved for internal purposes. Please remove it.");
                                }
 
-                               helpop_map[key] = value;
+                               help[key] = value;
                        }
 
-                       if (helpop_map.find("start") == helpop_map.end())
+                       if (help.find("start") == help.end())
                        {
                                // error!
                                throw ModuleException("m_helpop: Helpop file is missing important entry 'start'. Please check the example conf.");
                        }
-                       else if (helpop_map.find("nohelp") == helpop_map.end())
+                       else if (help.find("nohelp") == help.end())
                        {
                                // error!
                                throw ModuleException("m_helpop: Helpop file is missing important entry 'nohelp'. Please check the example conf.");
                        }
 
+                       helpop_map.swap(help);
                }
 
                void OnRehash(User* user)