- Added extra check to prevent crash on failed memory allocation

This commit is contained in:
Paul Bakker 2012-10-19 12:15:08 +00:00
parent 0be82f20a9
commit c110d025c2

View File

@ -1087,7 +1087,7 @@ int mpi_div_mpi( mpi *Q, mpi *R, const mpi *A, const mpi *B )
n = X.n - 1;
t = Y.n - 1;
mpi_shift_l( &Y, biL * (n - t) );
MPI_CHK( mpi_shift_l( &Y, biL * (n - t) ) );
while( mpi_cmp_mpi( &X, &Y ) >= 0 )
{