Commit 3d100f7d authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dwrite/tests: Fix another factory leak (Valgrind).

parent 1d52cfc4
......@@ -8887,6 +8887,8 @@ static void test_localfontfileloader(void)
IDWriteFontFileLoader_Release(loader2);
ref = IDWriteFactory_Release(factory);
ok(ref == 0, "factory not released, %u\n", ref);
ref = IDWriteFactory_Release(factory2);
ok(ref == 0, "factory not released, %u\n", ref);
DELETE_FONTFILE(path);
}
......
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