We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2f563e commit 322752bCopy full SHA for 322752b
library/bignum.c
@@ -161,7 +161,7 @@ int mbedtls_mpi_shrink( mbedtls_mpi *X, size_t nblimbs )
161
/* Actually resize up if there are currently fewer than nblimbs limbs. */
162
if( X->n <= nblimbs )
163
return( mbedtls_mpi_grow( X, nblimbs ) );
164
- /* Now X->n > nblimbs >= 0. */
+ /* After this point, then X->n > nblimbs and in particular X->n > 0. */
165
166
for( i = X->n - 1; i > 0; i-- )
167
if( X->p[i] != 0 )
0 commit comments