mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 00:21:12 +00:00
- Fixed off-by-one loop
This commit is contained in:
parent
c893e0257f
commit
36c4a678a6
|
@ -194,7 +194,7 @@ int ctr_drbg_update_internal( ctr_drbg_context *ctx,
|
|||
/*
|
||||
* Increase counter
|
||||
*/
|
||||
for( i = CTR_DRBG_BLOCKSIZE; i >= 0; i-- )
|
||||
for( i = CTR_DRBG_BLOCKSIZE; i > 0; i-- )
|
||||
if( ++ctx->counter[i - 1] != 0 )
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in a new issue