diff options
author | Rod Sheeter <rsheeter@google.com> | 2018-02-14 15:30:49 -0800 |
---|---|---|
committer | Rod Sheeter <rsheeter@google.com> | 2018-02-14 15:30:49 -0800 |
commit | 4696624ad9987b0eebcf5c84dafdb204b886f28e (patch) | |
tree | 50292c972a3b73a12fc40828cbad6577725746c3 /src/hb-ot-maxp-table.hh | |
parent | 3ed70e5e64910e1c22225f542a525807b000cb2a (diff) |
[subset] maxp wrong int type, note to use copy_writable_or_fail
Diffstat (limited to 'src/hb-ot-maxp-table.hh')
-rw-r--r-- | src/hb-ot-maxp-table.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hb-ot-maxp-table.hh b/src/hb-ot-maxp-table.hh index 34eb9ae8..0ad123ab 100644 --- a/src/hb-ot-maxp-table.hh +++ b/src/hb-ot-maxp-table.hh @@ -48,7 +48,7 @@ struct maxp return numGlyphs; } - inline void set_num_glyphs (uint16_t count) + inline void set_num_glyphs (unsigned int count) { numGlyphs.set (count); } @@ -64,6 +64,7 @@ struct maxp inline bool subset (hb_subset_plan_t *plan) const { hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>().sanitize (hb_face_reference_table (plan->source, HB_OT_TAG_maxp)); + // TODO hb_blob_copy_writable_or_fail hb_blob_t *maxp_prime_blob = hb_blob_create_sub_blob (maxp_blob, 0, -1); hb_blob_destroy (maxp_blob); |