dtudcfonted/gpftobdf.c: coverity CIDs 87073,87008,87029,86919,86898,86715; uninit scalar
This commit is contained in:
@@ -1332,17 +1332,17 @@ pCHARS_pcf (pcf, fix)
|
|||||||
PcfTmp *pcf;
|
PcfTmp *pcf;
|
||||||
int fix ;
|
int fix ;
|
||||||
{
|
{
|
||||||
char *bmp_ptn;
|
char *bmp_ptn = NULL;
|
||||||
char *bitmap;
|
char *bitmap = NULL;
|
||||||
int ptn_width, ptn_height;
|
int ptn_width = 0, ptn_height = 0;
|
||||||
int bmp_width, bmp_height;
|
int bmp_width = 0, bmp_height = 0;
|
||||||
int cpy_height;
|
int cpy_height = 0;
|
||||||
int row, col;
|
int row, col;
|
||||||
int row_width;
|
int row_width;
|
||||||
int encoding;
|
int encoding;
|
||||||
int encodingOffset;
|
int encodingOffset;
|
||||||
int nencoding;
|
int nencoding;
|
||||||
int bmp_adj, ptn_adj;
|
int bmp_adj = 0, ptn_adj = 0;
|
||||||
int adj_hi;
|
int adj_hi;
|
||||||
int width_bytes;
|
int width_bytes;
|
||||||
INT16 bl, br, ba, bd, bdw ;
|
INT16 bl, br, ba, bd, bdw ;
|
||||||
|
|||||||
Reference in New Issue
Block a user