aboutsummaryrefslogtreecommitdiff
path: root/changes/bug13096
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2014-09-10 23:46:20 -0400
committerNick Mathewson <nickm@torproject.org>2014-09-10 23:48:11 -0400
commit3c2c6a61163cd6a42cc0eeee9fc43200b9f08503 (patch)
tree94a717f1d8d0caaf3791c20e600835e0b85588bc /changes/bug13096
parenta9b2e5eac6168a1eb09da8d6d3ff43b08cc51411 (diff)
downloadtor-3c2c6a61163cd6a42cc0eeee9fc43200b9f08503.tar.gz
tor-3c2c6a61163cd6a42cc0eeee9fc43200b9f08503.zip
In routerlist_assert_ok(), check r2 before taking &(r2->cache_info)
Technically, we're not allowed to take the address of a member can't exist relative to the null pointer. That makes me wonder how any sane compliant system implements the offsetof macro, but let's let sleeping balrogs lie. Fixes 13096; patch on 0.1.1.9-alpha; patch from "teor", who was using clang -fsanitize=undefined-trap -fsanitize-undefined-trap-on-error -ftrapv
Diffstat (limited to 'changes/bug13096')
-rw-r--r--changes/bug130964
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug13096 b/changes/bug13096
new file mode 100644
index 0000000000..521faaf143
--- /dev/null
+++ b/changes/bug13096
@@ -0,0 +1,4 @@
+ o Minor bugfixes (conformance):
+ - In routerlist_assert_ok(), don't take the address of a routerinfo's
+ cache_info member unless that routerinfo is non-NULL. Fixes bug
+ 13096; bugfix on 0.1.1.9-alpha. Patch by "teor".