diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-30 21:31:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-30 21:31:26 +0000 |
commit | 6e4608701d7b426a872368a367b9426492101429 (patch) | |
tree | 0c3228a02ca89269b8d7a2ccc57fef98e9b09c66 | |
parent | ae30c8101bc10890a6fb07a478f80f141b9cb8f2 (diff) | |
download | tor-6e4608701d7b426a872368a367b9426492101429.tar.gz tor-6e4608701d7b426a872368a367b9426492101429.zip |
and another leak.
svn:r5175
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 1c3bf4cbc0..a2a4c8df44 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -886,6 +886,8 @@ retry_listeners(int type, config_line_t *cfg, log_fn(LOG_INFO, "Already have %s on %s:%d", conn_type_to_string(type), conn->address, conn->port); smartlist_remove(launch, line); + if (free_launch_elts) + config_free_lines(line); } } |