diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-09-25 18:46:29 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-09-25 18:46:29 +0000 |
commit | 52e179b942f48383a76ae102133a66e939a64862 (patch) | |
tree | 0c21b1748390ace573d742b5c9262c07775c80f6 /src/or | |
parent | c97a8469ad15599c0eff3fd0eaff0329d7751612 (diff) | |
download | tor-52e179b942f48383a76ae102133a66e939a64862.tar.gz tor-52e179b942f48383a76ae102133a66e939a64862.zip |
Trivial fix to make dmalloc happier: release memory held in static member of escaped().
svn:r8502
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index b2fd0359d7..8b4e3a6f0d 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1569,7 +1569,8 @@ tor_free_all(int postfork) /* stuff in main.c */ smartlist_free(closeable_connection_lst); tor_free(timeout_event); - + /* Stuff in util.c */ + escaped(NULL); if (!postfork) { close_logs(); /* free log strings. do this last so logs keep working. */ } |