[subset] cleanup no_subset_tables on destruction.

This commit is contained in:
Garret Rieger 2021-07-22 13:26:03 -07:00
parent 89fc399eba
commit 2b9cb29923
2 changed files with 2 additions and 0 deletions

View File

@ -225,6 +225,7 @@ hb_subset_input_destroy (hb_subset_input_t *input)
hb_set_destroy (input->name_languages);
hb_set_destroy (input->drop_tables);
hb_set_destroy (input->layout_features);
hb_set_destroy (input->no_subset_tables);
hb_free (input);
}

View File

@ -501,6 +501,7 @@ hb_subset_plan_destroy (hb_subset_plan_t *plan)
hb_set_destroy (plan->layout_features);
hb_set_destroy (plan->glyphs_requested);
hb_set_destroy (plan->drop_tables);
hb_set_destroy (plan->no_subset_tables);
hb_face_destroy (plan->source);
hb_face_destroy (plan->dest);
hb_map_destroy (plan->codepoint_to_glyph);