Clang-Tidy warning fixes.

* src/base/ftobjs.c (FT_Get_Paint): Operator has equivalent nested operands.
* src/bdf/bdflib.c (_bdf_add_property): Value stored to `fp` is never read.
* src/sdf/ftbsdf.c (bsdf_init_distance_map): Value stored to `pixel` is
never read.
* src/sdf/ftsdf.c (split_sdf_shape): Value stored to `error` is never read.
This commit is contained in:
Alexander Borsuk 2021-12-17 11:22:09 +01:00 committed by Werner Lemberg
parent d6a5c57727
commit 4f35711844
4 changed files with 4 additions and 5 deletions

View File

@ -5729,7 +5729,7 @@
SFNT_Service sfnt;
if ( !face || !paint || !paint )
if ( !face || !paint )
return 0;
if ( !FT_IS_SFNT( face ) )

View File

@ -1174,7 +1174,6 @@
font->props_size + 1 ) )
goto Exit;
fp = font->props + font->props_size;
font->props_size++;
}

View File

@ -756,8 +756,6 @@
byte = (FT_Byte)( 1 << mod );
t[t_index].alpha = pixel & byte ? 255 : 0;
pixel = 0;
}
}
}

View File

@ -1277,9 +1277,11 @@
default:
error = FT_THROW( Invalid_Argument );
goto Exit;
}
if ( error != FT_Err_Ok )
goto Exit;
edges = edges->next;
}