diff --git a/src/hb-open-file-private.hh b/src/hb-open-file-private.hh index 242a11fdb..5cb09daf6 100644 --- a/src/hb-open-file-private.hh +++ b/src/hb-open-file-private.hh @@ -114,6 +114,9 @@ struct TTCHeader bool sanitize (SANITIZE_ARG_DEF) { if (!SANITIZE (version)) return false; if (version.major < 1 || version.major > 2) return true; + /* XXX Maybe we shouldn't NEUTER these offsets, they may cause a full copy of + * the whole font right now. */ + //if (!table.sanitize (SANITIZE_ARG)) return false; return table.sanitize (SANITIZE_ARG, CONST_CHARP(this), CONST_CHARP(this)); }