mirror of https://github.com/mgba-emu/mgba.git
Util: Shut Coverity up about a false positive
This commit is contained in:
parent
4ef98c7ddf
commit
67c3c40989
|
@ -87,7 +87,7 @@ static void md5Step(uint32_t* buffer, const uint32_t* input) {
|
||||||
switch (i / 16) {
|
switch (i / 16) {
|
||||||
case 0:
|
case 0:
|
||||||
E = F(BB, CC, DD);
|
E = F(BB, CC, DD);
|
||||||
j = i;
|
j = i & 0xF;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
E = G(BB, CC, DD);
|
E = G(BB, CC, DD);
|
||||||
|
|
Loading…
Reference in New Issue