mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Merge branch 'maint-0.2.9' into maint-0.3.1
This commit is contained in:
commit
5acfc30876
3
changes/bug25629
Normal file
3
changes/bug25629
Normal file
@ -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.
|
@ -291,13 +291,12 @@ nodelist_add_microdesc(microdesc_t *md)
|
||||
if (rs == NULL)
|
||||
return NULL;
|
||||
node = node_get_mutable_by_id(rs->identity_digest);
|
||||
if (node) {
|
||||
if (node->md)
|
||||
node->md->held_by_nodes--;
|
||||
node->md = md;
|
||||
md->held_by_nodes++;
|
||||
}
|
||||
|
||||
if (node == NULL)
|
||||
return NULL;
|
||||
if (node->md)
|
||||
node->md->held_by_nodes--;
|
||||
node->md = md;
|
||||
md->held_by_nodes++;
|
||||
node_add_to_address_set(node);
|
||||
|
||||
return node;
|
||||
|
Loading…
Reference in New Issue
Block a user