dwrite/tests: Fixed font instance leak.

This commit is contained in:
Nikolay Sivov 2015-02-20 13:48:37 +03:00 committed by Alexandre Julliard
parent 6ff14a9213
commit 0067be66bb

View file

@ -2240,6 +2240,7 @@ static void test_GetGdiInterop(void)
hr = IDWriteGdiInterop_CreateFontFromLOGFONT(interop2, &logfont, &font);
ok(hr == S_OK, "got 0x%08x\n", hr);
IDWriteFont_Release(font);
IDWriteGdiInterop_Release(interop2);
IDWriteGdiInterop_Release(interop);