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

Do not leak the 'tag' when trying to read a truncated ed25519 key file

Fix for bug 18956.
parent 5b91e70a
No related branches found
No related tags found
No related merge requests found
o Minor bugfixes (memory leaks):
- Fix a small, uncommon memory leak that could occur when reading a
truncated ed25519 key file. Fixes bug 18956; bugfix on 0.2.6.1-alpha.
......@@ -433,6 +433,7 @@ ed25519_seckey_read_from_file(ed25519_secret_key_t *seckey_out,
errno = EINVAL;
}
tor_free(*tag_out);
return -1;
}
......@@ -472,6 +473,7 @@ ed25519_pubkey_read_from_file(ed25519_public_key_t *pubkey_out,
errno = EINVAL;
}
tor_free(*tag_out);
return -1;
}
......
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