mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
Fix a pair of compilation errors.
This commit is contained in:
parent
1d8e9e8c69
commit
2202ad7ab0
@ -243,7 +243,7 @@ router_reload_consensus_networkstatus(void)
|
||||
}
|
||||
|
||||
/** Free all storage held by the vote_routerstatus object <b>rs</b>. */
|
||||
STATIC void
|
||||
void
|
||||
vote_routerstatus_free(vote_routerstatus_t *rs)
|
||||
{
|
||||
vote_microdesc_hash_t *h, *next;
|
||||
|
@ -132,8 +132,9 @@ document_signature_t *document_signature_dup(const document_signature_t *sig);
|
||||
void networkstatus_free_all(void);
|
||||
int networkstatus_get_weight_scale_param(networkstatus_t *ns);
|
||||
|
||||
void vote_routerstatus_free(vote_routerstatus_t *rs);
|
||||
|
||||
#ifdef NETWORKSTATUS_PRIVATE
|
||||
STATIC void vote_routerstatus_free(vote_routerstatus_t *rs);
|
||||
#ifdef TOR_UNIT_TESTS
|
||||
STATIC int networkstatus_set_current_consensus_from_ns(networkstatus_t *c,
|
||||
const char *flavor);
|
||||
|
@ -45,7 +45,8 @@ fuzz_cleanup(void)
|
||||
int
|
||||
fuzz_main(const uint8_t *data, size_t sz)
|
||||
{
|
||||
char *str = tor_memdup_nulterm(data, sz), *s;
|
||||
char *str = tor_memdup_nulterm(data, sz);
|
||||
const char *s;
|
||||
routerstatus_t *rs_ns = NULL, *rs_md = NULL, *rs_vote = NULL;
|
||||
vote_routerstatus_t *vrs = tor_malloc_zero(sizeof(*vrs));
|
||||
smartlist_t *tokens = smartlist_new();
|
||||
|
Loading…
Reference in New Issue
Block a user