summaryrefslogtreecommitdiff
path: root/src/modules/m_cloaking.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_cloaking.cpp')
-rw-r--r--src/modules/m_cloaking.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index 43a0f5693..c2f721945 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -319,16 +319,12 @@ class ModuleCloaking : public Module
ModuleCloaking(InspIRCd* Me)
: Module(Me)
{
- /* Create new mode handler object */
- cu = new CloakUser(ServerInstance, this, HashModule);
-
/* Attempt to locate the md5 service provider, bail if we can't find it */
HashModule = ServerInstance->Modules->Find("m_md5.so");
if (!HashModule)
- {
- delete cu;
throw ModuleException("Can't find m_md5.so. Please load m_md5.so before m_cloaking.so.");
- }
+
+ cu = new CloakUser(ServerInstance, this, HashModule);
try
{