[set] Bugfix for hb_set_next

This commit is contained in:
Jonathan Kew 2017-10-26 15:08:29 +01:00 committed by Behdad Esfahbod
parent 92bac64bd2
commit d511cfb557
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ struct hb_set_t
goto found;
for (i++; i < len (); i++)
if (v[i])
for (unsigned int j = 0; j < ELT_BITS; j++)
for (j = 0; j < ELT_BITS; j++)
if (v[i] & (elt_t (1) << j))
goto found;