[set] Make array access more explicit Follow up on 94e421abbfc7ede9aaf3c8d86bb0ff9992ea3123
diff --git a/src/hb-set.hh b/src/hb-set.hh index 5fdad2b..7ba4c04 100644 --- a/src/hb-set.hh +++ b/src/hb-set.hh
@@ -669,7 +669,9 @@ return nullptr; pages[map.index].init0 (); - memmove (&page_map[i] + 1, &page_map[i], (page_map.len - 1 - i) * sizeof (page_map[0])); + memmove (page_map.arrayZ() + i + 1, + page_map.arrayZ() + i, + (page_map.len - 1 - i) * sizeof (page_map[0])); page_map[i] = map; } return &pages[page_map[i].index];