[cff] Use hb_ubytes_t() instead of Null(hb_ubytes_t)

This commit is contained in:
Behdad Esfahbod 2022-05-10 15:15:49 -06:00
parent 9033c7f99d
commit 8fd70362fa
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ struct biased_subrs_t
hb_ubytes_t operator [] (unsigned int index) const
{
if (unlikely (!subrs || index >= subrs->count))
return Null (hb_ubytes_t);
return hb_ubytes_t ();
else
return (*subrs)[index];
}