mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Fix a memory leak
It happened in dirvote_add_signatures_to_pending_consesus().
This commit is contained in:
parent
4c49d3c27e
commit
527581194c
@ -1,3 +1,5 @@
|
|||||||
o Minor bugfixes
|
o Minor bugfixes
|
||||||
- Fix a memory leak in the error case of circuit_build_times_parse_state().
|
- Fix a memory leak in the error case of circuit_build_times_parse_state().
|
||||||
Bugfix on 0.2.2.14-alpha; fixes bug 1831 partially.
|
Bugfix on 0.2.2.14-alpha; fixes bug 1831 partially.
|
||||||
|
- Fix a memory leak in dirvote_add_signatures_to_pending_consensus().
|
||||||
|
Bugfix on 0.2.2.6-alpha; fixes bug 1831 partially.
|
||||||
|
@ -3008,6 +3008,7 @@ dirvote_add_signatures_to_pending_consensus(
|
|||||||
networkstatus_vote_free(v);
|
networkstatus_vote_free(v);
|
||||||
}
|
}
|
||||||
*msg_out = "Signatures added";
|
*msg_out = "Signatures added";
|
||||||
|
tor_free(new_signatures);
|
||||||
} else if (r == 0) {
|
} else if (r == 0) {
|
||||||
*msg_out = "Signatures ignored";
|
*msg_out = "Signatures ignored";
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user