mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-21 21:36:21 +01:00
Added missing MPI_CHK around mpi functions
This commit is contained in:
parent
a9c16d2825
commit
3d8fb63e11
5 changed files with 27 additions and 21 deletions
|
|
@ -1233,7 +1233,7 @@ static int ecp_mod_p255( mpi *N )
|
|||
M.n++; /* Make room for multiplication by 19 */
|
||||
|
||||
/* N = A0 */
|
||||
mpi_set_bit( N, 255, 0 );
|
||||
MPI_CHK( mpi_set_bit( N, 255, 0 ) );
|
||||
for( i = P255_WIDTH; i < N->n; i++ )
|
||||
N->p[i] = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue