diff options
Diffstat (limited to 'ace/Configuration.cpp')
-rw-r--r-- | ace/Configuration.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Configuration.cpp b/ace/Configuration.cpp index 5bfe79819af..6d4b1901baf 100644 --- a/ace/Configuration.cpp +++ b/ace/Configuration.cpp @@ -357,7 +357,8 @@ ACE_Configuration::operator== (const ACE_Configuration& rhs) const } else if (valueType == INTEGER) { - u_int thisInt, rhsInt; + u_int thisInt = 0; + u_int rhsInt = 0; if (nonconst_this->get_integer_value ( thisSection, valueName.c_str (), @@ -380,7 +381,8 @@ ACE_Configuration::operator== (const ACE_Configuration& rhs) const { void* thisData = 0; void* rhsData = 0; - size_t thisLength, rhsLength; + size_t thisLength = 0; + size_t rhsLength = 0; if (nonconst_this->get_binary_value (thisSection, valueName.c_str (), thisData, |