tor

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

commit ac73913d408dca1c2f12b153162cdc609d732684
parent 7581ac709444297f954782af38d19126264762ab
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue, 19 Sep 2017 14:12:29 -0400

Merge branch 'bug23583_029'

Diffstat:
Msrc/ext/timeouts/timeout-bitops.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/ext/timeouts/timeout-bitops.c b/src/ext/timeouts/timeout-bitops.c @@ -231,7 +231,8 @@ main(int c, char **v) int result = 0; for (i = 0; i <= 63; ++i) { - uint64_t x = 1 << i; + uint64_t x = 1; + x <<= i; if (!check(x)) result = 1; --x;