From: Sadie Powell Date: Tue, 10 Nov 2020 23:34:22 +0000 (+0000) Subject: Skip module tags which don't have a module specified. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=6214094a84f33ea80af4dac88dd1b82bd59a0b5c;p=user%2Fhenk%2Fcode%2Finspircd.git Skip module tags which don't have a module specified. --- diff --git a/src/modules.cpp b/src/modules.cpp index 17804a48e..77e4142b3 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -479,9 +479,13 @@ void ModuleManager::LoadAll() for (ConfigIter i = tags.first; i != tags.second; ++i) { ConfigTag* tag = i->second; - std::string name = ExpandModName(tag->getString("name")); + + const std::string shortname = tag->getString("name"); + if (shortname.empty()) + continue; // Skip malformed module tags. // Skip modules which are already loaded. + const std::string name = ExpandModName(shortname); if (Modules.find(name) != Modules.end()) continue;