mbed TLS upgraded to 2.6.0
Fork of mbedtls by
Diff: library/md2.c
- Revision:
- 1:9ebc941037d5
- Parent:
- 0:cdf462088d13
--- a/library/md2.c Thu Jan 05 00:18:44 2017 +0000 +++ b/library/md2.c Fri Sep 29 18:41:59 2017 +0100 @@ -158,7 +158,7 @@ while( ilen > 0 ) { - if( ctx->left + ilen > 16 ) + if( ilen > 16 - ctx->left ) fill = 16 - ctx->left; else fill = ilen;