tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 96b59fc4d3486c06d3661adb34a5d32d5ff8e842
parent e247aab4eceeb3920f1667bf5a11d5bc83b950cc
Author: Neel Chauhan <neel@neelc.org>
Date:   Thu, 20 May 2021 11:06:50 -0700

Fix the fencepost issue when we check stability_last_downrated

Diffstat:
Achanges/bug40394 | 4++++
Msrc/feature/stats/rephist.c | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/changes/bug40394 b/changes/bug40394 @@ -0,0 +1,4 @@ + o Minor bugfixes (statistics): + - Fix the fencepost issue when we check stability_last_downrated where + we call rep_hist_downrate_old_runs() twice. Fixes bug 40394; bugfix + on 0.2.0.5-alpha. Patch by Neel Chauhan. diff --git a/src/feature/stats/rephist.c b/src/feature/stats/rephist.c @@ -731,7 +731,7 @@ rep_hist_downrate_old_runs(time_t now) return stability_last_downrated + STABILITY_INTERVAL; /* Okay, we should downrate the data. By how much? */ - while (stability_last_downrated + STABILITY_INTERVAL < now) { + while (stability_last_downrated + STABILITY_INTERVAL <= now) { stability_last_downrated += STABILITY_INTERVAL; alpha *= STABILITY_ALPHA; }