utf8_size: fix loop boundary

Found through static analysis
This commit is contained in:
Dominique Martinet 2018-07-01 23:14:43 +09:00
parent c73c552cae
commit 971b2f11f9
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static const struct {
int utf8_size(const char *s) {
uint8_t c = (uint8_t)*s;
for (size_t i = 0; i < sizeof(sizes) / 2; ++i) {
for (size_t i = 0; i < sizeof(sizes) / sizeof(*sizes); ++i) {
if ((c & sizes[i].mask) == sizes[i].result) {
return sizes[i].octets;
}