forked from minhngoc25a/freetype2
[cache, psaux] Remove zeros.
* src/cache/ftcmru.c (FTC_MruList_New): Remove initialization. * src/psaux/psstack.c (cf2_stack_init): Ditto.
This commit is contained in:
parent
9870b6c07e
commit
a8e8d9d7a4
|
@ -237,7 +237,7 @@
|
|||
FTC_MruNode *anode )
|
||||
{
|
||||
FT_Error error;
|
||||
FTC_MruNode node = NULL;
|
||||
FTC_MruNode node;
|
||||
FT_Memory memory = list->memory;
|
||||
|
||||
|
||||
|
|
|
@ -54,9 +54,8 @@
|
|||
FT_Error* e,
|
||||
FT_UInt stackSize )
|
||||
{
|
||||
FT_Error error = FT_Err_Ok; /* for FT_NEW */
|
||||
|
||||
CF2_Stack stack = NULL;
|
||||
FT_Error error; /* for FT_QNEW */
|
||||
CF2_Stack stack;
|
||||
|
||||
|
||||
if ( FT_QNEW( stack ) )
|
||||
|
|
Loading…
Reference in New Issue