1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 20:38:10 +00:00

fix(crypto): imporve handling of return value

This commit is contained in:
Ondřej Vejpustek 2024-04-01 21:07:36 +02:00
parent 057b927e99
commit db3b7563b2
2 changed files with 9 additions and 4 deletions

View File

@ -294,9 +294,11 @@ int zkp_bip340_tweak_private_key(const uint8_t *internal_private_key,
}
secp256k1_keypair keypair = {0};
if (secp256k1_keypair_create(context_writable, &keypair,
internal_private_key) != 1) {
result = -1;
if (result == 0) {
if (secp256k1_keypair_create(context_writable, &keypair,
internal_private_key) != 1) {
result = -1;
}
}
if (context_writable) {

View File

@ -71,7 +71,10 @@ int zkp_context_init(void) {
return 1;
}
secp256k1_context_writable_randomize(context);
if (secp256k1_context_writable_randomize(context) != 0) {
zkp_context_destroy();
return 1;
}
atomic_flag_clear(&locked);