diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-30 20:47:58 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-30 20:47:58 +0000 |
commit | de198d800b42218a424d44179ea2881d6dfbf975 (patch) | |
tree | 8c1de7020eb5a5d0df125ad4619255f41304d501 /src/common/aes.c | |
parent | 364fd1ccdffe4a8f6c46137366e4c673b26b453c (diff) | |
download | tor-de198d800b42218a424d44179ea2881d6dfbf975.tar.gz tor-de198d800b42218a424d44179ea2881d6dfbf975.zip |
Never call free() on tor_malloc()d memory. This is unlikely to be our current leak, but it may help dmalloc work.
svn:r5168
Diffstat (limited to 'src/common/aes.c')
-rw-r--r-- | src/common/aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/aes.c b/src/common/aes.c index b4dd774755..71250cd0c5 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -157,7 +157,7 @@ aes_free_cipher(aes_cnt_cipher_t *cipher) { assert(cipher); memset(cipher, 0, sizeof(cipher)); - free(cipher); + tor_free(cipher); } /** Encrypt <b>len</b> bytes from <b>input</b>, storing the result in |