summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-06-19 15:14:04 +0000
committerBrent Eagles <brent@zeroc.com>2006-06-19 15:14:04 +0000
commit26c0b6e8ccf97041c7ad8f1715f105cd7883217d (patch)
treec9ffa5e633aa1a48258a9d5a05f66319cf4ebbc8 /cpp/src
parentFix (diff)
downloadice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.tar.bz2
ice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.tar.xz
ice-26c0b6e8ccf97041c7ad8f1715f105cd7883217d.zip
fixing an uninitialized boolean issue
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/Glacier2/ProxyVerifier.cpp2
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)
{