diff options
author | Roger Dingledine <arma@torproject.org> | 2012-10-03 12:46:09 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2012-10-03 12:46:09 -0400 |
commit | 3d31771da9fcd0be5db21ac19a34d978bfe6d78d (patch) | |
tree | 722ee14ba813fef292909279263b8aa0f9826224 /src/or/rephist.c | |
parent | 65e85dba1be1c7ea6be0dca7e7e6bd7257d179c3 (diff) | |
download | tor-3d31771da9fcd0be5db21ac19a34d978bfe6d78d.tar.gz tor-3d31771da9fcd0be5db21ac19a34d978bfe6d78d.zip |
Free some more still-in-use memory at exit
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r-- | src/or/rephist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c index f9c0b5bebb..b9e7be1fca 100644 --- a/src/or/rephist.c +++ b/src/or/rephist.c @@ -3003,6 +3003,8 @@ rep_hist_free_all(void) digestmap_free(history_map, free_or_history); tor_free(read_array); tor_free(write_array); + tor_free(dir_read_array); + tor_free(dir_write_array); tor_free(last_stability_doc); tor_free(exit_bytes_read); tor_free(exit_bytes_written); |