From e2cdc874854d484e59acabad79cde1e0502d0cde Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 8 Apr 2005 06:16:09 +0000 Subject: [PATCH] remove some redundant code svn:r4062 --- src/or/main.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/or/main.c b/src/or/main.c index 39505f466f..b8268d62b4 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -322,14 +322,11 @@ void connection_start_writing(connection_t *conn) { (int)conn->s); } -/** Close all connections that have been schedule to get closed */ +/** Close all connections that have been scheduled to get closed */ static void close_closeable_connections(void) { int i; - if (!smartlist_len(closeable_connection_lst)) - return; - for (i = 0; i < smartlist_len(closeable_connection_lst); ) { connection_t *conn = smartlist_get(closeable_connection_lst, i); if (conn->poll_index < 0) {