1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-24 20:45:17 -07:00

Don't forget to free() r_inv in the core_ristretto255 test

This commit is contained in:
Frank Denis 2019-04-08 23:12:55 +02:00
parent 9dbf03c115
commit 449e6d12b9

View File

@ -169,6 +169,7 @@ tv3(void)
sodium_free(s_); sodium_free(s_);
sodium_free(s); sodium_free(s);
sodium_free(ru); sodium_free(ru);
sodium_free(r_inv);
sodium_free(r); sodium_free(r);
} }