mirror of
https://github.com/cuberite/polarssl.git
synced 2025-09-10 07:36:28 -04: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
|
* Increase counter
|
||||||
*/
|
*/
|
||||||
for( i = CTR_DRBG_BLOCKSIZE; i >= 0; i-- )
|
for( i = CTR_DRBG_BLOCKSIZE; i > 0; i-- )
|
||||||
if( ++ctx->counter[i - 1] != 0 )
|
if( ++ctx->counter[i - 1] != 0 )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user