Add explicit break to switch statement in GetHmacLength

This commit is contained in:
Kareem
2023-10-17 14:14:05 -07:00
parent 4f1b3fff73
commit f59b22d3a0

View File

@ -10138,6 +10138,8 @@ static WC_INLINE byte GetHmacLength(int hmac)
case sm3_mac:
return WC_SM3_DIGEST_SIZE;
#endif
default:
break;
}
return 0;
}