* src/pfr/pfrload.c (pfr_phy_font_load): Use FT_QNEW_ARRAY.

This commit is contained in:
Alexei Podtelezhnikov 2022-01-26 15:49:24 -05:00
parent 0ac535900b
commit 837f0345a9
1 changed files with 1 additions and 1 deletions

View File

@ -993,7 +993,7 @@
PFR_CHECK_SIZE( count * Size );
if ( FT_NEW_ARRAY( phy_font->chars, count ) )
if ( FT_QNEW_ARRAY( phy_font->chars, count ) )
goto Fail;
for ( n = 0; n < count; n++ )