* src/cff/cffload.c (cff_index_get_pointers): s/FT_QALLOC/FT_ALLOC/.
This commit is contained in:
parent
0bd5d95d66
commit
c78f78fab4
|
@ -1,3 +1,7 @@
|
||||||
|
2021-04-24 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||||
|
|
||||||
|
* src/cff/cffload.c (cff_index_get_pointers): s/FT_QALLOC/FT_ALLOC/.
|
||||||
|
|
||||||
2021-04-23 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2021-04-23 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||||
|
|
||||||
* src/base/ftobjs.c (Mac_Read_POST_Resource): s/FT_ALLOC/FT_QALLOC/.
|
* src/base/ftobjs.c (Mac_Read_POST_Resource): s/FT_ALLOC/FT_QALLOC/.
|
||||||
|
|
|
@ -428,7 +428,7 @@
|
||||||
|
|
||||||
if ( idx->count > 0 &&
|
if ( idx->count > 0 &&
|
||||||
!FT_NEW_ARRAY( tbl, idx->count + 1 ) &&
|
!FT_NEW_ARRAY( tbl, idx->count + 1 ) &&
|
||||||
( !pool || !FT_QALLOC( new_bytes, new_size ) ) )
|
( !pool || !FT_ALLOC( new_bytes, new_size ) ) )
|
||||||
{
|
{
|
||||||
FT_ULong n, cur_offset;
|
FT_ULong n, cur_offset;
|
||||||
FT_ULong extra = 0;
|
FT_ULong extra = 0;
|
||||||
|
|
Loading…
Reference in New Issue