fixed crash in SIGINT handling

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@694 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
Jan Kneschke 2005-09-08 09:55:45 +00:00
parent d00bb524f7
commit 4b63eae57d
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,6 @@ static void server_free(server *srv) {
#endif
fdevent_free(srv->ev);
connections_free(srv);
free(srv->conns);
if (srv->config_storage) {
@ -1133,6 +1132,7 @@ int main (int argc, char **argv) {
/* clean-up */
log_error_close(srv);
network_close(srv);
connections_free(srv);
plugins_free(srv);
server_free(srv);