diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-04-26 13:00:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-04-26 13:03:58 -0400 |
commit | 43ffd023e9267927539dc9c12bee86199cd1c800 (patch) | |
tree | a1eb428d7470f916154bec88ec5539892ab75aa1 /changes | |
parent | e98583594d897ac32745061143e565c6f4b45f97 (diff) | |
download | tor-43ffd023e9267927539dc9c12bee86199cd1c800.tar.gz tor-43ffd023e9267927539dc9c12bee86199cd1c800.zip |
Make SIZE_T_CEILING unsigned; add a signed SSIZE_T_CEILING
None of the comparisons were _broken_ previously, but avoiding
signed/unsigned comparisons makes everybody happier.
Fixes bug2475.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug2475 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug2475 b/changes/bug2475 new file mode 100644 index 0000000000..d6f0595a59 --- /dev/null +++ b/changes/bug2475 @@ -0,0 +1,5 @@ + o Minor bugfixes: + - Avoid signed/unsigned comparisons by making SIZE_T_CEILING unsigned. + (None of the cases where we did this before were wrong, but by making + this change we can avoid warnings.) Fixes bug2475; bugfix on + Tor 0.2.1.28. |