From 742aaa136343e1aed223612f0801a7e17bb92936 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Wed, 27 Nov 2019 23:18:43 +0330 Subject: [PATCH] [ot-glyf] Fix leak issue --- src/hb-ot-glyph.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hb-ot-glyph.cc b/src/hb-ot-glyph.cc index 24c4f23a2..15c06dbdf 100644 --- a/src/hb-ot-glyph.cc +++ b/src/hb-ot-glyph.cc @@ -129,6 +129,8 @@ struct _hb_ot_glyph_path_vectors { coords->fini (); commands->fini (); + free (coords); + free (commands); } };