mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2026-03-31 01:21:09 +02:00
Fixed bug in mpi_add_abs with adding a small number to a large mpi with carry rollover.
(cherry picked from commit 2d319fdfcb)
This commit is contained in:
@@ -761,7 +761,7 @@ int mpi_add_abs( mpi *X, const mpi *A, const mpi *B )
|
||||
p = X->p + i;
|
||||
}
|
||||
|
||||
*p += c; c = ( *p < c ); i++;
|
||||
*p += c; c = ( *p < c ); i++; p++;
|
||||
}
|
||||
|
||||
cleanup:
|
||||
|
||||
Reference in New Issue
Block a user