aboutsummaryrefslogtreecommitdiff
path: root/src/cull_list.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-10-13 21:26:50 +0000
committerGravatar brain2007-10-13 21:26:50 +0000
commit9422f4157ccff0482cd70105ada3bd9325455eaa (patch)
treecf77ac5d8314b43ae97527b58157314c4d23ed52 /src/cull_list.cpp
parentFix potential for ssl to block, based on patch submitted by djGrrr, adjusted ... (diff)
Add sanity checks to the ssl modules so that theres no possibility of an out of range fd being passed to the events.
The cull_list commit is a tidy-up only. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8155 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cull_list.cpp')
-rw-r--r--src/cull_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cull_list.cpp b/src/cull_list.cpp
index 9aecb8d83..a1e4aa998 100644
--- a/src/cull_list.cpp
+++ b/src/cull_list.cpp
@@ -190,7 +190,7 @@ int CullList::Apply()
ServerInstance->local_users.erase(x);
}
ServerInstance->clientlist->erase(iter);
- DELETE(a->GetUser());
+ delete a->GetUser();
}
list.erase(list.begin());