Skip to content
Snippets Groups Projects
Commit 542cc8a5 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix a memory leak; bug 17398.

parent 8378a331
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (memory leaks):
- Fix a memory leak in ed25519 batch signature checking.
Fixes bug 17398; bugfix on 0.2.6.1-alpha.
......@@ -260,6 +260,7 @@ ed25519_checksig_batch(int *okay_out,
tor_free(ms);
tor_free(lens);
tor_free(pks);
tor_free(sigs);
if (! okay_out)
tor_free(oks);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment