mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Remove the assigned-but-unused chosen_named_idx local variable
It had been used in consensus method 1. But now that 13 is the minimum (see #10163), we don't need it around. Found by sysrqb.
This commit is contained in:
parent
6a8d2e21b8
commit
051dd9c409
@ -1269,7 +1269,6 @@ networkstatus_compute_consensus(smartlist_t *votes,
|
|||||||
* is the same flag as votes[j]->known_flags[b]. */
|
* is the same flag as votes[j]->known_flags[b]. */
|
||||||
int *named_flag; /* Index of the flag "Named" for votes[j] */
|
int *named_flag; /* Index of the flag "Named" for votes[j] */
|
||||||
int *unnamed_flag; /* Index of the flag "Unnamed" for votes[j] */
|
int *unnamed_flag; /* Index of the flag "Unnamed" for votes[j] */
|
||||||
int chosen_named_idx;
|
|
||||||
int n_authorities_measuring_bandwidth;
|
int n_authorities_measuring_bandwidth;
|
||||||
|
|
||||||
strmap_t *name_to_id_map = strmap_new();
|
strmap_t *name_to_id_map = strmap_new();
|
||||||
@ -1287,7 +1286,6 @@ networkstatus_compute_consensus(smartlist_t *votes,
|
|||||||
unnamed_flag = tor_calloc(sizeof(int), smartlist_len(votes));
|
unnamed_flag = tor_calloc(sizeof(int), smartlist_len(votes));
|
||||||
for (i = 0; i < smartlist_len(votes); ++i)
|
for (i = 0; i < smartlist_len(votes); ++i)
|
||||||
unnamed_flag[i] = named_flag[i] = -1;
|
unnamed_flag[i] = named_flag[i] = -1;
|
||||||
chosen_named_idx = smartlist_string_pos(flags, "Named");
|
|
||||||
|
|
||||||
/* Build the flag indexes. Note that no vote can have more than 64 members
|
/* Build the flag indexes. Note that no vote can have more than 64 members
|
||||||
* for known_flags, so no value will be greater than 63, so it's safe to
|
* for known_flags, so no value will be greater than 63, so it's safe to
|
||||||
|
Loading…
Reference in New Issue
Block a user