coverity fix

This commit is contained in:
iceman1001 2020-04-06 10:55:18 +02:00
parent b6e85c865d
commit 95b48f25ef

View file

@ -2040,7 +2040,7 @@ void T55xx_ChkPwds(uint8_t flags) {
if (isok != sizeof(counter))
goto OUT;
pwdCount = counter[1] << 8 | counter[0];
pwdCount = (uint16_t)(counter[1] << 8 | counter[0]);
if (pwdCount == 0 || pwdCount == 0xFFFF)
goto OUT;