aboutsummaryrefslogtreecommitdiff
path: root/src/or/rephist.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-09-02 11:55:53 -0400
committerNick Mathewson <nickm@torproject.org>2014-09-02 11:56:56 -0400
commitefcab439564dcadc5bc14609a9205d73d236e966 (patch)
tree32b90aeed52b5d76bb862bd824b16bf0e2c7829a /src/or/rephist.c
parent8139db372528ca02cd572f3f7848e9d174a9b12e (diff)
downloadtor-efcab439564dcadc5bc14609a9205d73d236e966.tar.gz
tor-efcab439564dcadc5bc14609a9205d73d236e966.zip
Fix a number of clang analyzer false-positives
Most of these are in somewhat non-obvious code where it is probably a good idea to initialize variables and add extra assertions anyway. Closes 13036. Patches from "teor".
Diffstat (limited to 'src/or/rephist.c')
-rw-r--r--src/or/rephist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rephist.c b/src/or/rephist.c
index 5446c25e36..72de54c0c9 100644
--- a/src/or/rephist.c
+++ b/src/or/rephist.c
@@ -1570,7 +1570,7 @@ rep_hist_load_bwhist_state_section(bw_array_t *b,
time_t start;
uint64_t v, mv;
- int i,ok,ok_m;
+ int i,ok,ok_m = 0;
int have_maxima = s_maxima && s_values &&
(smartlist_len(s_values) == smartlist_len(s_maxima));