summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarsten Loesing <karsten.loesing@gmx.net>2008-06-17 19:13:05 +0000
committerKarsten Loesing <karsten.loesing@gmx.net>2008-06-17 19:13:05 +0000
commit024de76e5d9cb4a591829f8b810eab1edf9efb92 (patch)
treeb77d9d47db6fcbcecc980773f85773fa9a4ba3ac /src
parent693d7e3e359fc9c00c1e2492979a0387c50010c6 (diff)
downloadtor-024de76e5d9cb4a591829f8b810eab1edf9efb92.tar.gz
tor-024de76e5d9cb4a591829f8b810eab1edf9efb92.zip
I was told there is an extend_info_free(). I won't leak memory again. I won't leak memory again. I won't ...
svn:r15335
Diffstat (limited to 'src')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 641153410e..b38d73e1c0 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -809,7 +809,7 @@ rend_service_launch_establish_intro(rend_service_t *service,
log_info(LD_REND, "The intro circuit we just cannibalized ends at $%s, "
"but we requested an intro circuit to $%s. Updating "
"our service.", cann, orig);
- tor_free(intro->extend_info);
+ extend_info_free(intro->extend_info);
intro->extend_info = extend_info_dup(launched->build_state->chosen_exit);
}