diff options
author | Taylor Yu <catalyst@torproject.org> | 2018-03-26 17:51:50 -0500 |
---|---|---|
committer | Taylor Yu <catalyst@torproject.org> | 2018-03-27 15:29:00 -0500 |
commit | 4bb7d9fd1241a3c263636efa03ee8c62ab744515 (patch) | |
tree | de2b258b7bd9a6f830d0bd918613f671b39add3e /changes | |
parent | 9f93bcd16d70b540c518acee56a440be12072ef7 (diff) | |
download | tor-4bb7d9fd1241a3c263636efa03ee8c62ab744515.tar.gz tor-4bb7d9fd1241a3c263636efa03ee8c62ab744515.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/bug25629 | 3 |
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. |