diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-10-21 10:54:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-10-21 10:54:07 -0400 |
commit | 8b01849f3bce1beaf2f08f2c0b94feabda0f5978 (patch) | |
tree | d78af3b7fbc64e5732ebc9ef246a89cb939e8a74 /src/or/rendcache.c | |
parent | a5e873ff29d066532322a6946c2bc4d034be8c2d (diff) | |
download | tor-8b01849f3bce1beaf2f08f2c0b94feabda0f5978.tar.gz tor-8b01849f3bce1beaf2f08f2c0b94feabda0f5978.zip |
Yet more memory leaks in the rendcache tests
Diffstat (limited to 'src/or/rendcache.c')
-rw-r--r-- | src/or/rendcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendcache.c b/src/or/rendcache.c index 82c0336fa1..deb2fea4de 100644 --- a/src/or/rendcache.c +++ b/src/or/rendcache.c @@ -157,7 +157,7 @@ rend_cache_failure_entry_free(rend_cache_failure_t *entry) /** Helper: deallocate a rend_cache_failure_t. (Used with strmap_free(), * which requires a function pointer whose argument is void*). */ -static void +STATIC void rend_cache_failure_entry_free_(void *entry) { rend_cache_failure_entry_free(entry); |