diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 13:48:28 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-08-28 13:48:28 +0000 |
commit | 19157777c5f977fddbcfdc8cdad78e12bf0d6bbb (patch) | |
tree | e3e860f214483978dbd01fa8526b3e1fdf4db053 /src/modules/m_chanprotect.cpp | |
parent | de97b98a41109a517a8e677bf9b48400038f702d (diff) |
Remove the last uses of localised fake clients. This removes a lot of allocations (and uses of UIDs), and cleans things up a bit
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7943 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chanprotect.cpp')
-rw-r--r-- | src/modules/m_chanprotect.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index 0798e1947..8adeefb0b 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -78,11 +78,10 @@ class FounderProtectBase CUList* cl = channel->GetUsers(); std::string item = extend + std::string(channel->name); const char* mode_junk[MAXMODES+2]; - userrec* n = new userrec(MyInstance); - n->SetFd(FD_MAGIC_NUMBER); mode_junk[0] = channel->name; irc::modestacker modestack(false); std::deque<std::string> stackresult; + for (CUList::iterator i = cl->begin(); i != cl->end(); i++) { if (i->first->GetExt(item, dummyptr)) @@ -97,10 +96,9 @@ class FounderProtectBase { mode_junk[j+1] = stackresult[j].c_str(); } - MyInstance->SendMode(mode_junk, stackresult.size() + 1, n); + MyInstance->SendMode(mode_junk, stackresult.size() + 1, MyInstance->FakeClient); } - delete n; unload_kludge = false; } |