Fix clang++ warnings.

* src/*: Initialize some variables to NULL.
hdmx-advances
Werner Lemberg 3 years ago
parent e4f7673e46
commit 238245cd66
  1. 4
      src/base/ftobjs.c
  2. 2
      src/cache/ftcmanag.c
  3. 2
      src/cache/ftcmru.c
  4. 12
      src/cff/cffdrivr.c
  5. 4
      src/psaux/psstack.c
  6. 2
      src/raster/ftraster.c
  7. 2
      src/sdf/ftbsdf.c
  8. 2
      src/sdf/ftsdf.c
  9. 2
      src/smooth/ftgrays.c

@ -3744,7 +3744,7 @@
FT_Error error;
FT_Face face;
FT_Memory memory;
FT_CMap cmap;
FT_CMap cmap = NULL;
if ( !clazz || !charmap || !charmap->face )
@ -4459,7 +4459,7 @@
FT_Library library = module->library;
FT_Memory memory = library->memory;
FT_Error error;
FT_ListNode node;
FT_ListNode node = NULL;
if ( FT_QNEW( node ) )

@ -357,7 +357,7 @@
{
FT_Error error;
FT_Memory memory;
FTC_Manager manager;
FTC_Manager manager = NULL;
if ( !library )

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

@ -473,9 +473,9 @@
if ( cff && !cff->font_info )
{
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontInfoRec* font_info;
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontInfoRec* font_info = NULL;
if ( FT_QNEW( font_info ) )
@ -517,9 +517,9 @@
if ( cff && !cff->font_extra )
{
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontExtraRec* font_extra;
CFF_FontRecDict dict = &cff->top_font.font_dict;
FT_Memory memory = face->root.memory;
PS_FontExtraRec* font_extra = NULL;
FT_String* embedded_postscript;

@ -54,8 +54,8 @@
FT_Error* e,
FT_UInt stackSize )
{
FT_Error error; /* for FT_QNEW */
CF2_Stack stack;
FT_Error error; /* for FT_QNEW */
CF2_Stack stack = NULL;
if ( FT_QNEW( stack ) )

@ -3171,7 +3171,7 @@
black_PRaster *araster )
{
FT_Error error;
black_PRaster raster;
black_PRaster raster = NULL;
if ( !FT_NEW( raster ) )

@ -1177,7 +1177,7 @@
BSDF_PRaster* araster )
{
FT_Error error;
BSDF_PRaster raster;
BSDF_PRaster raster = NULL;
if ( !FT_NEW( raster ) )

@ -3710,7 +3710,7 @@
SDF_PRaster* araster )
{
FT_Error error;
SDF_PRaster raster;
SDF_PRaster raster = NULL;
if ( !FT_NEW( raster ) )

@ -2151,7 +2151,7 @@ typedef ptrdiff_t FT_PtrDist;
gray_PRaster* araster )
{
FT_Error error;
gray_PRaster raster;
gray_PRaster raster = NULL;
if ( !FT_NEW( raster ) )

Loading…
Cancel
Save