* src/sdf/ftsdf.c (sdf_*_new): Use standard macro.

This commit is contained in:
Alexei Podtelezhnikov 2022-01-26 14:02:27 -05:00
parent 09223ef929
commit 0ac535900b
1 changed files with 3 additions and 3 deletions

View File

@ -497,7 +497,7 @@
goto Exit;
}
if ( !FT_QALLOC( ptr, sizeof ( *ptr ) ) )
if ( !FT_QNEW( ptr ) )
{
*ptr = null_edge;
*edge = ptr;
@ -536,7 +536,7 @@
goto Exit;
}
if ( !FT_QALLOC( ptr, sizeof ( *ptr ) ) )
if ( !FT_QNEW( ptr ) )
{
*ptr = null_contour;
*contour = ptr;
@ -591,7 +591,7 @@
goto Exit;
}
if ( !FT_QALLOC( ptr, sizeof ( *ptr ) ) )
if ( !FT_QNEW( ptr ) )
{
*ptr = null_shape;
ptr->memory = memory;