[tor-commits] [tor/release-0.2.7] Whoops; infinite recursion
nickm at torproject.org
nickm at torproject.org
Wed Oct 21 15:06:54 UTC 2015
commit 5d45a26f39816c17459a3c71617cddcd3d19cea6
Author: Nick Mathewson <nickm at torproject.org>
Date: Wed Oct 21 10:56:27 2015 -0400
Whoops; infinite recursion
---
src/or/rendcache.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/or/rendcache.c b/src/or/rendcache.c
index 93f4440..d4bdd68 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>
More information about the tor-commits
mailing list