libdthelp: Resolve uninitialized warnings

This commit is contained in:
Peter Howkins
2021-12-20 23:52:12 +00:00
committed by Jon Trulson
parent b807066429
commit 320576e069
18 changed files with 31 additions and 31 deletions

View File

@@ -492,14 +492,14 @@ FormatManPage(
int italicCnt = 0;
int result = 0;
int cread;
int lastLen;
int lastLen = 0;
int checkLen;
int retWCLen;
wchar_t lastWC;
wchar_t retWC;
char *rloc = in_buf;
char *retStrPtr;
char c;
char c = 0;
char retC;
Boolean flag = False;
enum State newState;