diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-02-23 15:02:34 +0100 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-02-23 15:05:39 +0100 |
commit | 7681e355ed5da8d4f41bfc5a3fc0b1bcf67add45 (patch) | |
tree | 1686867dbdcd85f6fb8002512bb0c827cea7241b /src | |
parent | 3ae5bee303e3d35a975ab6f91bd3de210771d278 (diff) | |
download | tor-7681e355ed5da8d4f41bfc5a3fc0b1bcf67add45.tar tor-7681e355ed5da8d4f41bfc5a3fc0b1bcf67add45.tar.gz |
Fix another coverity-spotted memleak
Diffstat (limited to 'src')
-rw-r--r-- | src/or/control.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c index 0f7185528..5101fdef4 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -2121,6 +2121,8 @@ handle_control_extendcircuit(control_connection_t *conn, uint32_t len, if (!zero_circ && !(circ = get_circ(smartlist_get(args,0)))) { connection_printf_to_buf(conn, "552 Unknown circuit \"%s\"\r\n", (char*)smartlist_get(args, 0)); + SMARTLIST_FOREACH(args, char *, cp, tor_free(cp)); + smartlist_free(args); goto done; } |