1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 01:06:39 +02:00

Don't leak opers and opertypes on /os reload, fix not updating opertypes on non conf opers on rehash

This commit is contained in:
Adam
2013-12-19 21:34:21 -05:00
parent ab6cd3b26c
commit c0cd76a0a5
6 changed files with 42 additions and 13 deletions
+1 -1
View File
@@ -14,7 +14,7 @@
std::vector<Oper *> Oper::opers;
Oper::Oper(const Anope::string &n, OperType *o) : name(n), ot(o), require_oper(false), config(false)
Oper::Oper(const Anope::string &n, OperType *o) : name(n), ot(o), require_oper(false)
{
opers.push_back(this);
}