From 4b97a9b13f2aa2b27e1ecd050db3b94f9b40ac77 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 3 Nov 2016 22:54:35 -0400 Subject: Fix crash loading enc_old prior to the proto mods --- src/users.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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()) -- cgit