Commit b6ce50a2 authored by Michael Niedermayer's avatar Michael Niedermayer

avutil/ripemd: adjust loop condition to silence CID1035716

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d76fff7d
......@@ -263,7 +263,7 @@ static void ripemd160_transform(uint32_t *state, const uint8_t buffer[64], int e
ROUND160_48_TO_63(c,d,e,a,b,h,i,j,f,g);
SWAP(d,i)
for (; n < 80 - 1;) {
for (; n < 75;) {
ROUND160_64_TO_79(b,c,d,e,a,g,h,i,j,f);
ROUND160_64_TO_79(a,b,c,d,e,f,g,h,i,j);
ROUND160_64_TO_79(e,a,b,c,d,j,f,g,h,i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment