From: Attila Molnar Date: Mon, 29 Aug 2016 12:34:19 +0000 (+0200) Subject: Unregister modes before unhooking extensions when unloading a module X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=19295ade368e9691b9d4f3152520284c7ad67b13;p=user%2Fhenk%2Fcode%2Finspircd.git Unregister modes before unhooking extensions when unloading a module Listmodes store their list in an extension that must be present when they are unset to show the modes being unset --- diff --git a/src/modules.cpp b/src/modules.cpp index 567aa917c..5c5e5c5c0 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -363,6 +363,10 @@ void ModuleManager::DoSafeUnload(Module* mod) std::map::iterator modfind = Modules.find(mod->ModuleSourceFile); + // Unregister modes before extensions because modes may require their extension to show the mode being unset + UnregisterModes(mod, MODETYPE_USER); + UnregisterModes(mod, MODETYPE_CHANNEL); + std::vector > items; ServerInstance->Extensions.BeginUnregister(modfind->second, items); /* Give the module a chance to tidy out all its metadata */ @@ -388,9 +392,6 @@ void ModuleManager::DoSafeUnload(Module* mod) user->doUnhookExtensions(items); } - UnregisterModes(mod, MODETYPE_USER); - UnregisterModes(mod, MODETYPE_CHANNEL); - for(std::multimap::iterator i = DataProviders.begin(); i != DataProviders.end(); ) { std::multimap::iterator curr = i++;