diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-09-17 10:24:52 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-09-17 10:24:52 -0400 |
commit | 414adb237bc51e0e1b7321364dd73d9b3e635733 (patch) | |
tree | 1e56a0d38253990434a94719687d121641090060 /changes | |
parent | b1447a4312c47f13bf8ddddab09f19ee73640a3e (diff) | |
download | tor-414adb237bc51e0e1b7321364dd73d9b3e635733.tar tor-414adb237bc51e0e1b7321364dd73d9b3e635733.tar.gz |
Parse votes with >31 flags correctly
We were doing (1<<p) to generate a flag at position p, but we should
have been doing (U64_LITERAL(1)<<p).
Fixes bug 6861; bugfix on 0.2.0.3-alpha; reported pseudonymously.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug6853 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug6853 b/changes/bug6853 new file mode 100644 index 000000000..382adfb44 --- /dev/null +++ b/changes/bug6853 @@ -0,0 +1,3 @@ + o Minor bugfixes (directory authority): + - Correctly handle votes with more than 31 flags. Fixes bug 6853; + bugfix on 0.2.0.3-alpha. |