We can safely delete a connection_t in terminate_connection() now.

This commit is contained in:
Guus Sliepen 2007-05-19 12:07:30 +00:00
parent 01f47c46af
commit ce976717ea
6 changed files with 15 additions and 58 deletions

View file

@ -90,9 +90,7 @@ bool error_h(connection_t *c)
ifdebug(ERROR) logger(LOG_NOTICE, _("Error message from %s (%s): %d: %s"),
c->name, c->hostname, err, errorstring);
terminate_connection(c, c->status.active);
return true;
return false;
}
bool send_termreq(connection_t *c)
@ -106,9 +104,7 @@ bool termreq_h(connection_t *c)
{
cp();
terminate_connection(c, c->status.active);
return true;
return false;
}
bool send_ping(connection_t *c)