aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-12-08 09:37:05 -0500
committerNick Mathewson <nickm@torproject.org>2015-12-08 09:37:05 -0500
commitb0867fec964a8692e9c605da82b3a3393eeaf451 (patch)
tree0ffd3c1bb6c9563720362b29b16a83cdfd10c313 /changes
parentdbb919cf9400738987bbb91166b7b30c4cf770e9 (diff)
downloadtor-b0867fec964a8692e9c605da82b3a3393eeaf451.tar.gz
tor-b0867fec964a8692e9c605da82b3a3393eeaf451.zip
Fix a compilation warning introduced by clang 3.6
There was a dead check when we made sure that an array member of a struct was non-NULL. Tor has been doing this check since at least 0.2.3, maybe earlier. Fixes bug 17781.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug177813
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug17781 b/changes/bug17781
new file mode 100644
index 0000000000..01ed231b0a
--- /dev/null
+++ b/changes/bug17781
@@ -0,0 +1,3 @@
+ o Compilation fixes:
+ - Fix a compilation warning with Clang 3.6: Do not check the
+ presence of an address which can never be NULL. Fixes bug 17781.