dwrite: Use the correct array index.
Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6ce8624760
commit
cd746afd0d
|
@ -2298,7 +2298,7 @@ static ULONG WINAPI fontfallbackbuilder_Release(IDWriteFontFallbackBuilder *ifac
|
|||
UINT32 j;
|
||||
|
||||
for (j = 0; j < mapping->families_count; j++)
|
||||
heap_free(mapping->families[i]);
|
||||
heap_free(mapping->families[j]);
|
||||
heap_free(mapping->families);
|
||||
|
||||
if (mapping->collection)
|
||||
|
|
Loading…
Reference in New Issue