* src/cff/cffdrivr.c (cff_ps_get_font_{info,extra}): Use FT_QNEW.

This commit is contained in:
Alexei Podtelezhnikov 2021-09-20 14:31:45 -04:00
parent 529158983d
commit 71969d1edf
1 changed files with 9 additions and 9 deletions

View File

@ -473,12 +473,12 @@
if ( cff && !cff->font_info )
{
CFF_FontRecDict dict = &cff->top_font.font_dict;
PS_FontInfoRec *font_info = NULL;
FT_Memory memory = face->root.memory;
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontInfoRec* font_info;
if ( FT_QALLOC( font_info, sizeof ( *font_info ) ) )
if ( FT_QNEW( font_info ) )
goto Fail;
font_info->version = cff_index_get_sid_string( cff,
@ -515,15 +515,15 @@
FT_Error error = FT_Err_Ok;
if ( cff && cff->font_extra == NULL )
if ( cff && !cff->font_extra )
{
CFF_FontRecDict dict = &cff->top_font.font_dict;
PS_FontExtraRec* font_extra = NULL;
FT_Memory memory = face->root.memory;
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontExtraRec* font_extra;
FT_String* embedded_postscript;
if ( FT_ALLOC( font_extra, sizeof ( *font_extra ) ) )
if ( FT_QNEW( font_extra ) )
goto Fail;
font_extra->fs_type = 0U;