diff options
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/eventdns.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/eventdns.c b/src/or/eventdns.c index 9d0f8f0708..02b8c9a3e4 100644 --- a/src/or/eventdns.c +++ b/src/or/eventdns.c @@ -669,6 +669,7 @@ reply_callback(struct request *const req, u32 ttl, u32 err, struct reply *reply) req->user_pointer); else req->user_callback(err, 0, 0, 0, NULL, req->user_pointer); + return; } assert(0); } @@ -2416,7 +2417,7 @@ search_make_new(const struct search_state *const state, int n, const char *const static int search_request_new(int type, const char *const name, int flags, evdns_callback_type user_callback, void *user_arg) { - assert(type == TYPE_A); + assert(type == TYPE_A || type == TYPE_AAAA); if ( ((flags & DNS_QUERY_NO_SEARCH) == 0) && global_search_state && global_search_state->num_domains) { |