2
0
Fork 0

Fix double con_put in server_free

This commit is contained in:
Stefan Bühler 2008-08-18 16:43:55 +02:00
parent 475300d1aa
commit 577928e8eb
1 changed files with 0 additions and 1 deletions

View File

@ -178,7 +178,6 @@ void server_free(server* srv) {
connection *con = g_array_index(srv->connections, connection*, i);
connection_set_state(srv, con, CON_STATE_ERROR);
connection_state_machine(srv, con); /* cleanup plugins */
con_put(srv, con);
}
}
for (i = 0; i < srv->connections->len; i++) {