mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 11:25:42 +01:00
Fix compile error with armcc in mpi_is_prime()
This commit is contained in:
parent
da1b4de0e4
commit
7f4ed67a97
@ -22,6 +22,7 @@ Bugfix
|
||||
with non-blocking I/O.
|
||||
* Fix compiler warnings on iOS (found by Sander Niemeijer).
|
||||
* x509_crt_parse() did not increase total_failed on PEM error
|
||||
* Fix compile error with armcc in mpi_is_prime()
|
||||
|
||||
Changes
|
||||
* Ciphersuites using SHA-256 or SHA-384 now require TLS 1.x (there is no
|
||||
|
@ -2057,7 +2057,11 @@ int mpi_is_prime( mpi *X,
|
||||
void *p_rng )
|
||||
{
|
||||
int ret;
|
||||
const mpi XX = { 1, X->n, X->p }; /* Abs(X) */
|
||||
mpi XX;
|
||||
|
||||
XX.s = 1;
|
||||
XX.n = X->n;
|
||||
XX.p = X->p;
|
||||
|
||||
if( mpi_cmp_int( &XX, 0 ) == 0 ||
|
||||
mpi_cmp_int( &XX, 1 ) == 0 )
|
||||
|
Loading…
Reference in New Issue
Block a user