summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index c305fea92..04777ae19 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -2706,7 +2706,6 @@ int InspIRCd(char** argv, int argc)
WritePID(PID);
length = sizeof (client);
- char tcp_msg[MAXBUF],tcp_host[MAXBUF],tcp_sum[MAXBUF];
engine_structs;
timeval tvs;
tvs.tv_usec = 10000L;
@@ -2740,9 +2739,10 @@ int InspIRCd(char** argv, int argc)
for (std::vector<InspSocket*>::iterator a = module_sockets.begin(); a < module_sockets.end(); a++)
{
- if (!a->Poll())
+ InspSocket* s = (InspSocket*)*a;
+ if (!s->Poll())
{
- delete *a;
+ delete s;
module_sockets.erase(a);
break;
}