diff options
author | George Kadianakis <desnacked@riseup.net> | 2013-02-11 20:45:17 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 14:59:56 -0400 |
commit | 210210f219a1773530dd117d7a48d6edc3a5e714 (patch) | |
tree | 907d6f679fd4b1820ff4c690a7cb1525258eed03 /src/or/connection.c | |
parent | 895709db07c75c9a3bf8f2ef4e507fd410495dff (diff) | |
download | tor-210210f219a1773530dd117d7a48d6edc3a5e714.tar.gz tor-210210f219a1773530dd117d7a48d6edc3a5e714.zip |
Make the Extended ORPort understand the TRANSPORT command.
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 6f66f797bd..57a9c5838b 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -603,6 +603,7 @@ connection_free_(connection_t *conn) connection_or_remove_from_ext_or_id_map(TO_OR_CONN(conn)); tor_free(TO_OR_CONN(conn)->ext_or_conn_id); tor_free(TO_OR_CONN(conn)->ext_or_auth_correct_client_hash); + tor_free(TO_OR_CONN(conn)->ext_or_transport); } #ifdef USE_BUFFEREVENTS |