addr: Initialize resolved address cache to NULL address

Related to #40022

Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
David Goulet
2020-07-08 07:50:50 -04:00
parent 9b2cadb492
commit 46e3484261
+4 -2
View File
@@ -42,13 +42,15 @@ typedef enum {
} fn_address_ret_t;
/** Last resolved addresses. */
static tor_addr_t last_resolved_addrs[IDX_SIZE];
static tor_addr_t last_resolved_addrs[IDX_SIZE] =
{ TOR_ADDR_NULL, TOR_ADDR_NULL, TOR_ADDR_NULL };
/** Last suggested addresses.
*
* These addresses come from a NETINFO cell from a trusted relay (currently
* only authorities). We only use those in last resort. */
static tor_addr_t last_suggested_addrs[IDX_SIZE];
static tor_addr_t last_suggested_addrs[IDX_SIZE] =
{ TOR_ADDR_NULL, TOR_ADDR_NULL, TOR_ADDR_NULL };
static inline int
af_to_idx(const int family)