[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:
Alexei Podtelezhnikov 2021-09-12 23:21:32 -04:00
parent 9870b6c07e
commit a8e8d9d7a4
2 changed files with 3 additions and 4 deletions

2
src/cache/ftcmru.c vendored
View File

@ -237,7 +237,7 @@
FTC_MruNode *anode )
{
FT_Error error;
FTC_MruNode node = NULL;
FTC_MruNode node;
FT_Memory memory = list->memory;

View File

@ -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 ) )