summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2016-11-03 22:54:35 -0400
committerAdam <Adam@anope.org>2016-11-03 22:54:35 -0400
commit4b97a9b13f2aa2b27e1ecd050db3b94f9b40ac77 (patch)
treee7fa7185cd3f054be7a002de19e4a119ff900cc7
parent07f72a3122479bb10c923a5f72b316297e388a7f (diff)
Fix crash loading enc_old prior to the proto mods
-rw-r--r--modules/encryption/enc_old.cpp2
-rw-r--r--src/users.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/encryption/enc_old.cpp b/modules/encryption/enc_old.cpp
index 7c751df93..7346132f9 100644
--- a/modules/encryption/enc_old.cpp
+++ b/modules/encryption/enc_old.cpp
@@ -45,7 +45,7 @@ class EOld : public Module
oldmd5provider(this)
{
- ModuleManager::LoadModule("enc_md5", User::Find(creator));
+ ModuleManager::LoadModule("enc_md5", User::Find(creator, true));
if (!md5)
throw ModuleException("Unable to find md5 reference");
diff --git a/src/users.cpp b/src/users.cpp
index 264f5ceba..25e558c5f 100644
--- a/src/users.cpp
+++ b/src/users.cpp
@@ -816,7 +816,7 @@ bool User::BadPassword()
User* User::Find(const Anope::string &name, bool nick_only)
{
- if (!nick_only && IRCD->RequiresID)
+ if (!nick_only && IRCD && IRCD->RequiresID)
{
user_map::iterator it = UserListByUID.find(name);
if (it != UserListByUID.end())