Fix memory leak spotted by Nick.

This commit is contained in:
Karsten Loesing 2010-08-15 13:34:57 +02:00
parent acd25558b8
commit 3d77c67d93

View File

@ -2011,6 +2011,9 @@ rep_hist_exit_stats_history(time_t now)
written_string,
read_string,
streams_string);
tor_free(written_string);
tor_free(read_string);
tor_free(streams_string);
return result;
}