Cleared uninitialized variable warning

pull/136/head
Jeffrey Walton 2016-01-24 19:53:17 -05:00
parent 7cff3c8d05
commit bce92ed5e5
1 changed files with 1 additions and 1 deletions

View File

@ -3113,7 +3113,7 @@ static Integer StringToInteger(const T *str, ByteOrder order)
else if(radix == 16 && order == LITTLE_ENDIAN_ORDER) else if(radix == 16 && order == LITTLE_ENDIAN_ORDER)
{ {
// Nibble high, low and count // Nibble high, low and count
unsigned int nh, nl, nc = 0; unsigned int nh = 0, nl = 0, nc = 0;
Integer position(Integer::One()); Integer position(Integer::One());
for (unsigned int i=0; i<length; i++) for (unsigned int i=0; i<length; i++)