]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ident.cpp
When a server sends a SERVER command with <5 params, dont just close the connection...
[user/henk/code/inspircd.git] / src / modules / m_ident.cpp
index 0fef4d33b984a33c22108c090edffbcf58b6ffca..16629d700610b343711b303d3126d04be8528e87 100644 (file)
@@ -189,9 +189,11 @@ class ModuleIdent : public Module
                Conf = new ConfigReader(ServerInstance);
                IdentTimeout = Conf->ReadInteger("ident", "timeout", 0, true);
                PortBind = Conf->ReadValue("ident", "bind", 0);
+
                if (!IdentTimeout)
                        IdentTimeout = 1;
-               DELETE(Conf);
+
+               delete Conf;
        }
 
        ModuleIdent(InspIRCd* Me)