* src/truetype/ttgxvar.c (TT_Vary_Get_Glyph_Deltas): Fix call to
FT_NEW_ARRAY.
This commit is contained in:
parent
645af08157
commit
619e147621
|
@ -1,3 +1,8 @@
|
||||||
|
2004-09-07 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
* src/truetype/ttgxvar.c (TT_Vary_Get_Glyph_Deltas): Fix call to
|
||||||
|
FT_NEW_ARRAY.
|
||||||
|
|
||||||
2004-09-04 Werner Lemberg <wl@gnu.org>
|
2004-09-04 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
* include/freetype/internal/ftobjs.h: Don't include
|
* include/freetype/internal/ftobjs.h: Don't include
|
||||||
|
|
|
@ -1323,7 +1323,7 @@
|
||||||
return TT_Err_Invalid_Argument;
|
return TT_Err_Invalid_Argument;
|
||||||
|
|
||||||
/* to be freed by the caller */
|
/* to be freed by the caller */
|
||||||
if ( (error = FT_NEW_ARRAY( delta_xy, n_points )) != 0 )
|
if ( FT_NEW_ARRAY( delta_xy, n_points ) != 0 )
|
||||||
goto Exit;
|
goto Exit;
|
||||||
*deltas = delta_xy;
|
*deltas = delta_xy;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue