* src/truetype/ttgxvar.c (TT_Vary_Get_Glyph_Deltas): Fix call to
FT_NEW_ARRAY.
This commit is contained in:
parent
6ee0aacfb8
commit
fd22a0f9b1
@ -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>
|
||||
|
||||
* include/freetype/internal/ftobjs.h: Don't include
|
||||
|
@ -1323,7 +1323,7 @@
|
||||
return TT_Err_Invalid_Argument;
|
||||
|
||||
/* 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;
|
||||
*deltas = delta_xy;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user