forked from minhngoc25a/freetype2
* src/bdf/bdflib.c (_bdf_list_ensure): Tweak allocation macro.
This commit is contained in:
parent
79ed536d01
commit
2f62d8e075
|
@ -1,3 +1,7 @@
|
|||
2021-05-07 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||
|
||||
* src/bdf/bdflib.c (_bdf_list_ensure): Tweak allocation macro.
|
||||
|
||||
2021-05-06 Alexei Podtelezhnikov <apodtele@gmail.com>
|
||||
|
||||
* src/psaux/psobjs.c (ps_parser_load_field): Tweak allocation macro.
|
||||
|
|
|
@ -328,7 +328,7 @@
|
|||
else if ( newsize < oldsize || newsize > bigsize )
|
||||
newsize = bigsize;
|
||||
|
||||
if ( FT_RENEW_ARRAY( list->field, oldsize, newsize ) )
|
||||
if ( FT_QRENEW_ARRAY( list->field, oldsize, newsize ) )
|
||||
goto Exit;
|
||||
|
||||
list->size = newsize;
|
||||
|
|
Loading…
Reference in New Issue