[serialize] Fix linking

This commit is contained in:
Behdad Esfahbod 2019-04-01 21:36:03 -07:00
parent 7c0e2054e0
commit f0ea3ac17b
1 changed files with 2 additions and 2 deletions

View File

@ -260,13 +260,13 @@ struct hb_serialize_context_t
if (link.is_wide)
{
auto &off = * ((BEInt<uint32_t, 4> *) (parent.head + offset));
auto &off = * ((BEInt<uint32_t, 4> *) (parent.head + link.position));
off = offset;
propagate_error (off == offset);
}
else
{
auto &off = * ((BEInt<uint16_t, 2> *) (parent.head + offset));
auto &off = * ((BEInt<uint16_t, 2> *) (parent.head + link.position));
off = offset;
propagate_error (off == offset);
}