summaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorTaylor Yu <catalyst@torproject.org>2018-03-26 19:29:59 -0500
committerTaylor Yu <catalyst@torproject.org>2018-03-27 16:11:29 -0500
commit471f28a2a85b8db8315f518aff456440f9791877 (patch)
treef47c5bd619ee004642e7332f4eec6f4b3979b45b /changes
parent46c2b0ca228d2d95666f28d4e42411dce0a59e15 (diff)
downloadtor-471f28a2a85b8db8315f518aff456440f9791877.tar.gz
tor-471f28a2a85b8db8315f518aff456440f9791877.zip
Fix CID 1430932
Coverity found a null pointer reference in nodelist_add_microdesc(). This is almost certainly impossible assuming that the routerstatus_t returned by router_get_consensus_status_by_descriptor_digest() always corresponds to an entry in the nodelist. Fixes bug 25629.
Diffstat (limited to 'changes')
-rw-r--r--changes/bug256293
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug25629 b/changes/bug25629
new file mode 100644
index 0000000000..190928a941
--- /dev/null
+++ b/changes/bug25629
@@ -0,0 +1,3 @@
+ o Minor bugfixes (C correctness):
+ - Fix a very unlikely null pointer dereference. Fixes bug 25629;
+ bugfix on 0.2.9.15. Found by Coverity; this is CID 1430932.