summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorteor <teor2345@gmail.com>2014-12-20 22:20:54 +1100
committerNick Mathewson <nickm@torproject.org>2014-12-21 13:35:03 -0500
commit6fad395300a263badb443bf0feb936d4a554d020 (patch)
tree37c85108cd9698d72d8079d5d57a85f34486be34 /changes
parent3d85df956905453413918866ffa4dc07b86e7f1b (diff)
downloadtor-6fad395300a263badb443bf0feb936d4a554d020.tar.gz
tor-6fad395300a263badb443bf0feb936d4a554d020.zip
Fix clang warning, IPv6 address comment, buffer size typo
The address of an array in the middle of a structure will always be non-NULL. clang recognises this and complains. Disable the tautologous and redundant check to silence this warning. Fixes bug 14001.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug14001-clang-warning6
1 files changed, 6 insertions, 0 deletions
diff --git a/changes/bug14001-clang-warning b/changes/bug14001-clang-warning
new file mode 100644
index 0000000000..b932af6ab7
--- /dev/null
+++ b/changes/bug14001-clang-warning
@@ -0,0 +1,6 @@
+ o Minor bugfixes:
+ - The address of an array in the middle of a structure will
+ always be non-NULL. clang recognises this and complains.
+ Disable the tautologous and redundant check to silence
+ this warning.
+ Fixes bug 14001.