# HG changeset patch # User Matti Hamalainen # Date 1526276839 -10800 # Node ID e28e67358ff6ce0c331facb2c04f0229487a3892 # Parent 9c3dd6f8dbdada402ee3a03d77b946e96768f34c Fix some uninitialized variable warnings. diff -r 9c3dd6f8dbda -r e28e67358ff6 tools/lib64gfx.c --- a/tools/lib64gfx.c Mon May 14 07:45:25 2018 +0300 +++ b/tools/lib64gfx.c Mon May 14 08:47:19 2018 +0300 @@ -612,8 +612,8 @@ { const DMC64EncDecOp *op = fmtGetEncDecOp(fmt, i); const Uint8 *src; - DMC64MemBlock *blk; - char *blkname; + DMC64MemBlock *blk = NULL; + char *blkname = NULL; size_t size; // Check for last operator @@ -773,8 +773,8 @@ { const DMC64EncDecOp *op = fmtGetEncDecOp(fmt, i); size_t size, chksize; - const DMC64MemBlock *blk; - char *blkname; + const DMC64MemBlock *blk = NULL; + char *blkname = NULL; // Check for last operator if (op->type == DT_LAST)