From fcd42ebef4f56b15af7f7407d48e41d1440dac35 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 31 Oct 2007 20:48:08 +0000 Subject: r16301@catbus: nickm | 2007-10-31 16:43:49 -0400 A couple of small tweaks to karsten's latest patch, and note an issue with using a bitmap to represent a single int. svn:r12300 --- src/or/circuitlist.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/or/circuitlist.c') diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index cf5440156..0051d46df 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -389,6 +389,8 @@ circuit_free(circuit_t *circ) tor_free(ocirc->build_state); circuit_free_cpath(ocirc->cpath); + if (ocirc->intro_key) + crypto_free_pk_env(ocirc->intro_key); } else { or_circuit_t *ocirc = TO_OR_CIRCUIT(circ); -- cgit v1.2.3