From bce92ed5e5a97cfa8ccaef54391c365834aeef08 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 24 Jan 2016 19:53:17 -0500 Subject: [PATCH] Cleared uninitialized variable warning --- integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer.cpp b/integer.cpp index dac50b9a..3a670102 100644 --- a/integer.cpp +++ b/integer.cpp @@ -3113,7 +3113,7 @@ static Integer StringToInteger(const T *str, ByteOrder order) else if(radix == 16 && order == LITTLE_ENDIAN_ORDER) { // Nibble high, low and count - unsigned int nh, nl, nc = 0; + unsigned int nh = 0, nl = 0, nc = 0; Integer position(Integer::One()); for (unsigned int i=0; i