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

@@ -5091,11 +5091,11 @@ ProcessSDLAttribute(
char *attrValue;
char **strPtr;
char numBuf[DTD_NAMELEN+1];
char *varOffset1;
char *varOffset1 = NULL;
SDLNumber *numPtr1;
SdlOption *enumPtr1;
SdlOption attrNum;
_DtHelpFontValue fontNum;
_DtHelpFontValue fontNum = 0;
_DtHelpFontValue *fontPtr1;
const SDLAttribute *pAttr = SDLAttributeList;