[ot-glyf] Fix leak issue

This commit is contained in:
Ebrahim Byagowi 2019-11-27 23:18:43 +03:30
parent fddf79fc37
commit 742aaa1363
1 changed files with 2 additions and 0 deletions

View File

@ -129,6 +129,8 @@ struct _hb_ot_glyph_path_vectors
{ {
coords->fini (); coords->fini ();
commands->fini (); commands->fini ();
free (coords);
free (commands);
} }
}; };