commit | 8830bd24476f7e62dfe7a43a703a147d021f415d | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Tue Jan 21 13:59:51 2020 +0100 |
committer | Simon Butcher <simon.butcher@arm.com> | Fri Mar 13 16:23:45 2020 +0000 |
tree | c2c7d5f9c9025b7345853f8d07bbeca930ebe79c | |
parent | 0660747057ac13e7f0be299a2dda24d3e2138977 [diff] [blame] |
Minor comment improvement
diff --git a/library/bignum.c b/library/bignum.c index 36b0485..00df10d 100644 --- a/library/bignum.c +++ b/library/bignum.c
@@ -160,7 +160,7 @@ /* Actually resize up if there are currently fewer than nblimbs limbs. */ if( X->n <= nblimbs ) return( mbedtls_mpi_grow( X, nblimbs ) ); - /* Now X->n > nblimbs >= 0. */ + /* After this point, then X->n > nblimbs and in particular X->n > 0. */ for( i = X->n - 1; i > 0; i-- ) if( X->p[i] != 0 )