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

Merge remote-tracking branch 'origin/maint-0.2.4'

parents 9a6514ce 8b6a952c
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,7 @@ curve25519_keypair_read_from_file(curve25519_keypair_t *keypair_out,
end:
if (content) {
memwipe(content, 0, st.st_size);
memwipe(content, 0, (size_t) st.st_size);
tor_free(content);
}
if (r != 0) {
......
......@@ -1069,7 +1069,7 @@ test_crypto_curve25519_persist(void *arg)
tor_free(tag);
content[69] ^= 0xff;
tt_int_op(0, ==, write_bytes_to_file(fname, content, st.st_size, 1));
tt_int_op(0, ==, write_bytes_to_file(fname, content, (size_t)st.st_size, 1));
tt_int_op(-1, ==, curve25519_keypair_read_from_file(&keypair2, &tag, fname));
done:
......
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