From 19157777c5f977fddbcfdc8cdad78e12bf0d6bbb Mon Sep 17 00:00:00 2001 From: w00t Date: Tue, 28 Aug 2007 13:48:28 +0000 Subject: 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 --- src/modules/m_chanprotect.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/modules/m_chanprotect.cpp') 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 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; } -- cgit v1.2.3