diff options
author | Brent Eagles <brent@zeroc.com> | 2006-06-19 15:14:04 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-06-19 15:14:04 +0000 |
commit | 26c0b6e8ccf97041c7ad8f1715f105cd7883217d (patch) | |
tree | c9ffa5e633aa1a48258a9d5a05f66319cf4ebbc8 /cpp | |
parent | Fix (diff) | |
download | ice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.tar.bz2 ice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.tar.xz ice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.zip |
fixing an uninitialized boolean issue
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Glacier2/ProxyVerifier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Glacier2/ProxyVerifier.cpp b/cpp/src/Glacier2/ProxyVerifier.cpp index 9808fadebe4..507a87d83c3 100644 --- a/cpp/src/Glacier2/ProxyVerifier.cpp +++ b/cpp/src/Glacier2/ProxyVerifier.cpp @@ -932,7 +932,7 @@ Glacier2::ProxyVerifier::verify(const ObjectPrx& proxy) return true; } - bool result; + bool result = false; if(_rejectRules.size() == 0) { |