[test/directwrite] Fix a leak

This commit is contained in:
Behdad Esfahbod 2025-03-22 16:54:56 -06:00
parent b159f5c74e
commit f53befb6a0

View file

@ -100,6 +100,8 @@ get_dwfontface (const wchar_t *family_name)
hr = font->CreateFontFace (&dw_face);
g_assert_true (SUCCEEDED (hr));
font->Release ();
return dw_face;
}