diff options
author | Roger Dingledine <arma@torproject.org> | 2006-05-30 06:23:44 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-05-30 06:23:44 +0000 |
commit | 1bf0f99b66569d5ac818acf4c60bf404c61edca7 (patch) | |
tree | 4d2bbf6fb8fe21e66d60f7323f85f4bdc56f7b54 /src/or/connection.c | |
parent | 9000a5aff1a08085593378ea3ac2e8b6eccec252 (diff) | |
download | tor-1bf0f99b66569d5ac818acf4c60bf404c61edca7.tar tor-1bf0f99b66569d5ac818acf4c60bf404c61edca7.tar.gz |
connection_t kept the identity_pkey but all it did was store it and
free it. perhaps we don't need it after all?
svn:r6518
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 3135c6158..59685e482 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -224,8 +224,6 @@ _connection_free(connection_t *conn) } } - if (conn->identity_pkey) - crypto_free_pk_env(conn->identity_pkey); tor_free(conn->nickname); tor_free(conn->socks_request); tor_free(conn->incoming_cmd); |