mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avutil/ripemd: adjust loop condition to silence CID1035716
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d76fff7df7
commit
b6ce50a2d4
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user