mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
Fix a memory leak in bench.c
This commit is contained in:
parent
fa00f2dce5
commit
9d47f4d298
@ -120,7 +120,7 @@ bench_onion_TAP(void)
|
||||
uint64_t start, end;
|
||||
char os[TAP_ONIONSKIN_CHALLENGE_LEN];
|
||||
char or[TAP_ONIONSKIN_REPLY_LEN];
|
||||
crypto_dh_t *dh_out;
|
||||
crypto_dh_t *dh_out = NULL;
|
||||
|
||||
key = crypto_pk_new();
|
||||
key2 = crypto_pk_new();
|
||||
@ -175,6 +175,7 @@ bench_onion_TAP(void)
|
||||
NANOCOUNT(start, end, iters)/1e3);
|
||||
|
||||
done:
|
||||
crypto_dh_free(dh_out);
|
||||
crypto_pk_free(key);
|
||||
crypto_pk_free(key2);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user