Sanitize shallow in Lookup since the generic SubLookup has no methods

This commit is contained in:
Behdad Esfahbod 2010-04-22 00:49:16 -04:00
parent e5546a4352
commit 19828ad42d
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ struct Lookup
inline bool sanitize (SANITIZE_ARG_DEF) {
TRACE_SANITIZE ();
if (!(SANITIZE_SELF () && SANITIZE_THIS (subTable))) return false;
if (!(SANITIZE_SELF () && HB_LIKELY ((subTable).sanitize_shallow (SANITIZE_ARG)))) return false;
if (HB_UNLIKELY (lookupFlag & LookupFlag::UseMarkFilteringSet))
{
USHORT &markFilteringSet = StructAfter<USHORT> (subTable);