Commit 850b67f2 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

dwrite: Properly free mappings in fontfallbackbuilder_Release.

parent a71888cd
......@@ -2305,10 +2305,10 @@ static ULONG WINAPI fontfallbackbuilder_Release(IDWriteFontFallbackBuilder *ifac
IDWriteFontCollection_Release(mapping->collection);
heap_free(mapping->ranges);
heap_free(mapping->locale);
heap_free(mapping);
}
IDWriteFactory5_Release(fallbackbuilder->factory);
heap_free(fallbackbuilder->mappings);
heap_free(fallbackbuilder);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment