Skip to content

Commit 322752b

Browse files
Minor comment improvement
1 parent e2f563e commit 322752b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/bignum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ int mbedtls_mpi_shrink( mbedtls_mpi *X, size_t nblimbs )
161161
/* Actually resize up if there are currently fewer than nblimbs limbs. */
162162
if( X->n <= nblimbs )
163163
return( mbedtls_mpi_grow( X, nblimbs ) );
164-
/* Now X->n > nblimbs >= 0. */
164+
/* After this point, then X->n > nblimbs and in particular X->n > 0. */
165165

166166
for( i = X->n - 1; i > 0; i-- )
167167
if( X->p[i] != 0 )

0 commit comments

Comments
 (0)