Merge branch 'bug21495'

This commit is contained in:
Nick Mathewson 2017-07-07 13:03:36 -04:00
commit eb01f35149

View File

@ -737,13 +737,13 @@ dirvote_get_intermediate_param_value(const smartlist_t *param_list,
} }
} SMARTLIST_FOREACH_END(k_v_pair); } SMARTLIST_FOREACH_END(k_v_pair);
if (n_found == 1) if (n_found == 1) {
return value; return value;
else if (BUG(n_found > 1)) } else {
return default_val; tor_assert_nonfatal(n_found == 0);
else
return default_val; return default_val;
} }
}
/** Minimum number of directory authorities voting for a parameter to /** Minimum number of directory authorities voting for a parameter to
* include it in the consensus, if consensus method 12 or later is to be * include it in the consensus, if consensus method 12 or later is to be