diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-05 19:18:32 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-05 19:18:32 -0500 |
commit | 56c54a66bdc01a9e8b857f22650ca88d8eff5466 (patch) | |
tree | c52bf226e02f8608f6d095758e61136bfe54dac7 /src/feature/control | |
parent | 2c4d7d8c65b3783fa9213cc632d398d0d1b6ef5c (diff) | |
download | tor-56c54a66bdc01a9e8b857f22650ca88d8eff5466.tar.gz tor-56c54a66bdc01a9e8b857f22650ca88d8eff5466.zip |
Fix a memory leak in handling GETINFO.
Fixes bug 33103; bugfix on 0.4.3.1-alpha.
Diffstat (limited to 'src/feature/control')
-rw-r--r-- | src/feature/control/control_getinfo.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/feature/control/control_getinfo.c b/src/feature/control/control_getinfo.c index 6f30878d23..5dcc4b170d 100644 --- a/src/feature/control/control_getinfo.c +++ b/src/feature/control/control_getinfo.c @@ -1735,6 +1735,7 @@ handle_control_getinfo(control_connection_t *conn, } } else { control_reply_add_one_kv(answers, 250, KV_RAW, q, ans); + tor_free(ans); } } SMARTLIST_FOREACH_END(q); |