summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2023-03-04 14:00:52 -0500
committerAlexei Podtelezhnikov <apodtele@gmail.com>2023-03-04 14:00:52 -0500
commita2b8937d477d14729db704414be2ccbcc956e545 (patch)
treef2416e468869bc6fedb3f69e85cc626ea0c934d3
parent29578f75c399f3922ba379eae29d85ee0a406cc0 (diff)
downloadfreetype2-a2b8937d477d14729db704414be2ccbcc956e545.tar.gz
[cff] Clean up memory management in the old engine.
* src/cff/cffparse.c (finalize_t2_strings): Fix NULL-dereferencing in the out-of-memory situation, use `FT_FREE`. (cff_parser_run): Use FreeType memory allocation macros and avoid uninitialized pointers.
-rw-r--r--src/cff/cffparse.c38
1 files changed, 13 insertions, 25 deletions
diff --git a/src/cff/cffparse.c b/src/cff/cffparse.c
index e16206fd5..eaad8d50a 100644
--- a/src/cff/cffparse.c
+++ b/src/cff/cffparse.c
@@ -63,10 +63,7 @@
/* allocate the stack buffer */
if ( FT_QNEW_ARRAY( parser->stack, stackSize ) )
- {
- FT_FREE( parser->stack );
goto Exit;
- }
parser->stackSize = stackSize;
parser->top = parser->stack; /* empty stack */
@@ -82,13 +79,16 @@
void* data,
void* user )
{
- CFF_T2_String t2 = (CFF_T2_String)data;
+ FT_UNUSED( user );
+ if ( data )
+ {
+ CFF_T2_String t2 = (CFF_T2_String)data;
- FT_UNUSED( user );
- memory->free( memory, t2->start );
- memory->free( memory, data );
+ FT_FREE( t2->start );
+ FT_FREE( data );
+ }
}
#endif /* CFF_CONFIG_OPTION_OLD_ENGINE */
@@ -1309,18 +1309,13 @@
/* Now copy the stack data in the temporary decoder object, */
/* converting it back to charstring number representations */
/* (this is ugly, I know). */
-
- node = (FT_ListNode)memory->alloc( memory,
- sizeof ( FT_ListNodeRec ) );
- if ( !node )
- goto Out_Of_Memory_Error;
+ if ( FT_NEW( node ) )
+ goto Exit;
FT_List_Add( &parser->t2_strings, node );
- t2 = (CFF_T2_String)memory->alloc( memory,
- sizeof ( CFF_T2_StringRec ) );
- if ( !t2 )
- goto Out_Of_Memory_Error;
+ if ( FT_NEW( t2 ) )
+ goto Exit;
node->data = t2;
@@ -1329,9 +1324,8 @@
t2_size = 5 * ( decoder.top - decoder.stack );
- q = (FT_Byte*)memory->alloc( memory, t2_size );
- if ( !q )
- goto Out_Of_Memory_Error;
+ if ( FT_QALLOC( q, t2_size ) )
+ goto Exit;
t2->start = q;
t2->limit = q + t2_size;
@@ -1598,12 +1592,6 @@
Exit:
return error;
-#ifdef CFF_CONFIG_OPTION_OLD_ENGINE
- Out_Of_Memory_Error:
- error = FT_THROW( Out_Of_Memory );
- goto Exit;
-#endif
-
Stack_Overflow:
error = FT_THROW( Invalid_Argument );
goto Exit;