diff options
Diffstat (limited to 'cpp/src/IceSSL/Instance.cpp')
-rw-r--r-- | cpp/src/IceSSL/Instance.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceSSL/Instance.cpp b/cpp/src/IceSSL/Instance.cpp index f60b1e07676..fd3e2b3324d 100644 --- a/cpp/src/IceSSL/Instance.cpp +++ b/cpp/src/IceSSL/Instance.cpp @@ -246,7 +246,7 @@ IceSSL::Instance::initialize() // password retries. // int count = 0; - int err; + int err = 0; while(count < passwordRetryMax) { ERR_clear_error(); @@ -316,7 +316,7 @@ IceSSL::Instance::initialize() // password retries. // int count = 0; - int err; + int err = 0; while(count < passwordRetryMax) { ERR_clear_error(); @@ -381,7 +381,7 @@ IceSSL::Instance::initialize() // password retries. // int count = 0; - int err; + int err = 0; while(count < passwordRetryMax) { ERR_clear_error(); |