diff options
author | Brent Eagles <brent@zeroc.com> | 2007-05-29 18:36:26 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-05-29 18:36:26 +0000 |
commit | 890bf54a396c9e15c8eec1cad94e9e836f190200 (patch) | |
tree | f80406d34f9cc6687183c242a996088235bb5ee9 | |
parent | Fixed bug 2079 (diff) | |
download | ice-890bf54a396c9e15c8eec1cad94e9e836f190200.tar.bz2 ice-890bf54a396c9e15c8eec1cad94e9e836f190200.tar.xz ice-890bf54a396c9e15c8eec1cad94e9e836f190200.zip |
fix problem with possible use of uninitialized local variable
-rwxr-xr-x | cpp/src/Glacier2/FilterManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Glacier2/FilterManager.cpp b/cpp/src/Glacier2/FilterManager.cpp index f2dece5f253..492ad3c78e2 100755 --- a/cpp/src/Glacier2/FilterManager.cpp +++ b/cpp/src/Glacier2/FilterManager.cpp @@ -238,7 +238,7 @@ Glacier2::FilterManager::create(const CommunicatorPtr& communicator, const Objec if(allowAddUser) { - int addUserMode; + int addUserMode = 0; if(!props->getProperty("Glacier2.Filter.Category.AcceptUser").empty()) { addUserMode = props->getPropertyAsInt("Glacier2.Filter.Category.AcceptUser"); |