mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-26 21:51:03 +00:00
Add comment to integer overflow fix in base64.c
Adds clarifying comment to the integer overflow fix in base64.c
This commit is contained in:
parent
59abd301f5
commit
746edf4e75
|
@ -198,6 +198,10 @@ int base64_decode( unsigned char *dst, size_t *dlen,
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* The following expression is to calculate the following formula without
|
||||||
|
* risk of integer overflow in n:
|
||||||
|
* n = ( ( n * 6 ) + 7 ) >> 3;
|
||||||
|
*/
|
||||||
n = ( 6 * ( n >> 3 ) ) + ( ( 6 * ( n & 0x7 ) + 7 ) >> 3 );
|
n = ( 6 * ( n >> 3 ) ) + ( ( 6 * ( n & 0x7 ) + 7 ) >> 3 );
|
||||||
n -= j;
|
n -= j;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue