[set] Always check population before checking for equality

pull/1039/head
Behdad Esfahbod 7 years ago
parent 2eb9bbd986
commit dd22c29f95
  1. 4
      src/hb-set-private.hh

@ -380,9 +380,7 @@ struct hb_set_t
inline bool is_equal (const hb_set_t *other) const
{
if (population != (unsigned int) -1 &&
other->population != (unsigned int) -1 &&
population != other->population)
if (get_population () != other->get_population ())
return false;
unsigned int na = pages.len;

Loading…
Cancel
Save