Browse Source

Fix a bug in smartlist_choose_node_by_bandwidth

Nick Mathewson 15 years ago
parent
commit
42acef68ad
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/routerlist.c

+ 2 - 1
src/or/routerlist.c

@@ -1878,7 +1878,7 @@ static const node_t *
 smartlist_choose_node_by_bandwidth(smartlist_t *sl,
                                    bandwidth_weight_rule_t rule)
 {
-  unsigned int i;
+  unsigned i;
   const routerstatus_t *status=NULL;
   int32_t *bandwidths;
   int is_exit;
@@ -1925,6 +1925,7 @@ smartlist_choose_node_by_bandwidth(smartlist_t *sl,
     int is_known = 1;
     int32_t flags = 0;
     uint32_t this_bw = 0;
+    i = node_sl_idx;
 
     if (router_digest_is_me(node->identity))
       me_idx = node_sl_idx;