mirror of https://github.com/freetype/freetype
* src/pfr/pfrload.c (pfr_phy_font_load): Use FT_QNEW_ARRAY.
This commit is contained in:
parent
0ac535900b
commit
837f0345a9
|
@ -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++ )
|
||||
|
|
Loading…
Reference in New Issue