mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
r11610@catbus: nickm | 2007-01-30 17:44:02 -0500
Fix a bug in our assertions related to removing recently-completed DNS lookup attempts on exit. It is okay to find a cache entry with the same name as a DONE entry, so long it is not the same struct as the DONE entry. svn:r9467
This commit is contained in:
parent
76f896e714
commit
49b5e5cf9c
@ -324,8 +324,8 @@ dns_free_all(void)
|
||||
/* XXXX012 The hash lookups here could be quite slow; remove them
|
||||
* once we're happy. */
|
||||
if (res->state == CACHE_STATE_DONE) {
|
||||
cached_resolve_t *removed = HT_REMOVE(cache_map, &cache_root, res);
|
||||
tor_assert(!removed);
|
||||
cached_resolve_t *found = HT_FIND(cache_map, &cache_root, res);
|
||||
tor_assert(!found || found != res);
|
||||
_free_cached_resolve(res);
|
||||
} else {
|
||||
cached_resolve_t *found = HT_FIND(cache_map, &cache_root, res);
|
||||
|
Loading…
Reference in New Issue
Block a user