mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Merge remote-tracking branch 'pastly/ticket20459'
This commit is contained in:
commit
39375db3dc
2 changed files with 4 additions and 1 deletions
3
changes/bug20459
Normal file
3
changes/bug20459
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
o Minor bugfixes:
|
||||||
|
- Fix ewma_cmp_cmux never considering circuit policies to be different.
|
||||||
|
Introduced in 0.2.6. Fixes bug 20459.
|
|
@ -500,7 +500,7 @@ ewma_cmp_cmux(circuitmux_t *cmux_1, circuitmux_policy_data_t *pol_data_1,
|
||||||
tor_assert(pol_data_2);
|
tor_assert(pol_data_2);
|
||||||
|
|
||||||
p1 = TO_EWMA_POL_DATA(pol_data_1);
|
p1 = TO_EWMA_POL_DATA(pol_data_1);
|
||||||
p2 = TO_EWMA_POL_DATA(pol_data_1);
|
p2 = TO_EWMA_POL_DATA(pol_data_2);
|
||||||
|
|
||||||
if (p1 != p2) {
|
if (p1 != p2) {
|
||||||
/* Get the head cell_ewma_t from each queue */
|
/* Get the head cell_ewma_t from each queue */
|
||||||
|
|
Loading…
Add table
Reference in a new issue