forked from wolfSSL/wolfssl
check err after set
This commit is contained in:
@ -4192,7 +4192,8 @@ static int accel_fp_mul(int idx, mp_int* k, ecc_point *R, mp_int* modulus,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (err == MP_OKAY) {
|
if (err == MP_OKAY) {
|
||||||
z = 0;
|
z = 0; /* mp_to_unsigned_bin != MP_OKAY z will be declared/not set */
|
||||||
|
(void) z; /* Acknowledge the unused assignment */
|
||||||
ForceZero(kb, KB_SIZE);
|
ForceZero(kb, KB_SIZE);
|
||||||
/* map R back from projective space */
|
/* map R back from projective space */
|
||||||
if (map) {
|
if (map) {
|
||||||
@ -4448,6 +4449,9 @@ static int accel_fp_mul2add(int idx1, int idx2,
|
|||||||
XFREE(kb[1], NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
XFREE(kb[1], NULL, DYNAMIC_TYPE_TMP_BUFFER);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if (err != MP_OKAY)
|
||||||
|
return err;
|
||||||
|
|
||||||
#undef KB_SIZE
|
#undef KB_SIZE
|
||||||
|
|
||||||
return ecc_map(R, modulus, mp);
|
return ecc_map(R, modulus, mp);
|
||||||
|
Reference in New Issue
Block a user