mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Fix leak
From recent work.
This commit is contained in:
parent
24fe2be9c1
commit
b5327faf99
1 changed files with 2 additions and 0 deletions
|
@ -355,6 +355,8 @@ arabic_fallback_plan_destroy (arabic_fallback_plan_t *fallback_plan)
|
|||
for (unsigned int i = 0; i < fallback_plan->num_lookups; i++)
|
||||
if (fallback_plan->lookup_array[i])
|
||||
{
|
||||
if (fallback_plan->accel_array[i])
|
||||
fallback_plan->accel_array[i]->fini ();
|
||||
hb_free (fallback_plan->accel_array[i]);
|
||||
if (fallback_plan->free_lookups)
|
||||
hb_free (fallback_plan->lookup_array[i]);
|
||||
|
|
Loading…
Add table
Reference in a new issue