diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-10-21 10:56:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-10-21 10:56:27 -0400 |
commit | 5d45a26f39816c17459a3c71617cddcd3d19cea6 (patch) | |
tree | 9968d44652083e78a695e324fdd23f7d23b20567 /src/or/rendcache.c | |
parent | aa96abe66b7ac507e927d4cfe37d78eaf754179e (diff) | |
download | tor-5d45a26f39816c17459a3c71617cddcd3d19cea6.tar.gz tor-5d45a26f39816c17459a3c71617cddcd3d19cea6.zip |
Whoops; infinite recursion
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 93f4440193..d4bdd68698 100644 --- a/src/or/rendcache.c +++ b/src/or/rendcache.c @@ -125,7 +125,7 @@ rend_cache_failure_intro_entry_free(rend_cache_failure_intro_t *entry) static void rend_cache_failure_intro_entry_free_(void *entry) { - rend_cache_failure_intro_entry_free_(entry); + rend_cache_failure_intro_entry_free(entry); } /** Allocate a rend cache failure intro object and return it. <b>failure</b> |