From 1111c7578ed76f9b338c5cbc13792ff638e22783 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 20 Apr 2023 15:17:23 -0600 Subject: [PATCH] hb_memset --- src/OT/glyf/SubsetGlyph.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OT/glyf/SubsetGlyph.hh b/src/OT/glyf/SubsetGlyph.hh index 79c7f7dd2..c21fee80b 100644 --- a/src/OT/glyf/SubsetGlyph.hh +++ b/src/OT/glyf/SubsetGlyph.hh @@ -86,7 +86,7 @@ struct SubsetGlyph * harmless instructions, since that's what they will be * interpreted as. */ - memset (p, 0x7A /* TrueType instruction ROFF; harmless */, end - p); + hb_memset (p, 0x7A /* TrueType instruction ROFF; harmless */, end - p); p += end - p; dest_glyph = hb_bytes_t (dest_glyph.arrayZ, p - (char *) dest_glyph.arrayZ);