libdthelp: Resolve uninitialized warnings
This commit is contained in:
committed by
Jon Trulson
parent
b807066429
commit
320576e069
@@ -397,11 +397,11 @@ _DtCvCheckLineSyntax (
|
||||
int str_len,
|
||||
_DtCvValue skip_hypen_ck)
|
||||
{
|
||||
int myStrLen;
|
||||
int wcFlag;
|
||||
void *pChar;
|
||||
int myStrLen = 0;
|
||||
int wcFlag = 0;
|
||||
void *pChar = NULL;
|
||||
wchar_t nextChar;
|
||||
wchar_t lastChar;
|
||||
wchar_t lastChar = 0;
|
||||
_DtCvValue lstCharMb = False;
|
||||
_DtCvValue nxtCharMb = False;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user