[NETCFGX] Fix uninitialized variable use.

This commit is contained in:
Thomas Faber 2022-02-19 09:49:27 -05:00
parent d3f3a97b1e
commit 680f103f3d
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -594,13 +594,11 @@ BuildParameterArray(
dwDefaultMin = 0UL;
dwDefaultMax = 65535UL; // MAX_WORD;
}
#if 0
else if (ParamArray->Array[dwIndex].Type == DWORD_TYPE)
{
dwDefaultMin = 0UL;
dwDefaultMax = 4294967295UL; //MAX_DWORD;
}
#endif
if (ParamArray->Array[dwIndex].Type == INT_TYPE ||
ParamArray->Array[dwIndex].Type == LONG_TYPE)