* src/base/ftutil.c (FT_Realloc): Use MEM_Set instead of memset.
This commit is contained in:
parent
769430fc03
commit
8b3551a7f9
|
@ -1,3 +1,7 @@
|
|||
2002-03-08 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftutil.c (FT_Realloc): Use MEM_Set instead of memset.
|
||||
|
||||
2002-03-07 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/base/ftdbgmem.c (ft_mem_table_resize, ft_mem_table_new,
|
||||
|
|
|
@ -88,7 +88,7 @@
|
|||
goto Fail;
|
||||
|
||||
if ( size > current )
|
||||
memset( (char*)Q + current, 0, size - current );
|
||||
MEM_Set( (char*)Q + current, 0, size - current );
|
||||
|
||||
*P = Q;
|
||||
return FT_Err_Ok;
|
||||
|
|
Loading…
Reference in New Issue