mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-19 18:00:33 +01:00
Be even _more_ careful when signatures are bogus.
svn:r17252
This commit is contained in:
parent
3970c34f10
commit
8f1952bf11
@ -2049,7 +2049,12 @@ dirvote_add_signatures_to_pending_consensus(
|
||||
networkstatus_get_detached_signatures(pending_consensus);
|
||||
const char *src;
|
||||
char *dst, *dst_end;
|
||||
size_t new_consensus_len =
|
||||
size_t new_consensus_len;
|
||||
if (!new_detached) {
|
||||
*msg_out = "No signatures to add";
|
||||
goto err;
|
||||
}
|
||||
new_consensus_len =
|
||||
strlen(pending_consensus_body) + strlen(new_detached) + 1;
|
||||
pending_consensus_body = tor_realloc(pending_consensus_body,
|
||||
new_consensus_len);
|
||||
|
Loading…
Reference in New Issue
Block a user