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

fix-sdf-squared-distances
Alexei Podtelezhnikov 3 years ago
parent 09223ef929
commit 0ac535900b
  1. 6
      src/sdf/ftsdf.c

@ -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;

Loading…
Cancel
Save