diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-13 10:34:53 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-13 10:34:53 -0400 |
commit | 015fcd0e1191aa6fec672a6e01bf348638eba8a0 (patch) | |
tree | f37f78ca9cd86ff861197578de83b10c9154eba2 /src | |
parent | ef671147f21814ed505505ec96bfcf297bc6bb7a (diff) | |
download | tor-015fcd0e1191aa6fec672a6e01bf348638eba8a0.tar.gz tor-015fcd0e1191aa6fec672a6e01bf348638eba8a0.zip |
Fix a GCC "potential null dereference" warning.
Fixes bug 26269; bugfix on c30be5a82d47328 in 0.2.8.2-alpha
Diffstat (limited to 'src')
-rw-r--r-- | src/or/router.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/or/router.c b/src/or/router.c index 31f2ff00d2..35b6bd203c 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1859,10 +1859,11 @@ router_compare_to_my_exit_policy(const tor_addr_t *addr, uint16_t port) MOCK_IMPL(int, router_my_exit_policy_is_reject_star,(void)) { - if (!router_get_my_routerinfo()) /* make sure routerinfo exists */ + const routerinfo_t *me = router_get_my_routerinfo(); + if (!me) /* make sure routerinfo exists */ return -1; - return router_get_my_routerinfo()->policy_is_reject_star; + return me->policy_is_reject_star; } /** Return true iff I'm a server and <b>digest</b> is equal to @@ -2432,10 +2433,11 @@ check_descriptor_bandwidth_changed(time_t now) { static time_t last_changed = 0; uint64_t prev, cur; - if (!router_get_my_routerinfo()) + const routerinfo_t *my_ri = router_get_my_routerinfo(); + if (!my_ri) /* make sure routerinfo exists */ return; - prev = router_get_my_routerinfo()->bandwidthcapacity; + prev = my_ri->bandwidthcapacity; cur = we_are_hibernating() ? 0 : rep_hist_bandwidth_assess(); if ((prev != cur && (!prev || !cur)) || cur > prev*2 || @@ -2486,14 +2488,15 @@ check_descriptor_ipaddress_changed(time_t now) const or_options_t *options = get_options(); const char *method = NULL; char *hostname = NULL; + const routerinfo_t *my_ri = router_get_my_routerinfo(); (void) now; - if (router_get_my_routerinfo() == NULL) + if (my_ri == NULL) /* make sure routerinfo exists */ return; /* XXXX ipv6 */ - prev = router_get_my_routerinfo()->addr; + prev = my_ri->addr; if (resolve_my_address(LOG_INFO, options, &cur, &method, &hostname) < 0) { log_info(LD_CONFIG,"options->Address didn't resolve into an IP."); return; |