diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-11-30 20:38:55 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-11-30 20:38:55 +0000 |
commit | 4671f4029b7dff91be9e9b2d04aa8d604320a9c6 (patch) | |
tree | 7aec1718ee63f51b8dbd29f42fd7bf7b18a3f414 /cpp/src/IceGrid/ServerCache.cpp | |
parent | Fixed (ICE-5064) - Batch Oneway does not appear to work with Silverlight hell... (diff) | |
download | ice-4671f4029b7dff91be9e9b2d04aa8d604320a9c6.tar.bz2 ice-4671f4029b7dff91be9e9b2d04aa8d604320a9c6.tar.xz ice-4671f4029b7dff91be9e9b2d04aa8d604320a9c6.zip |
Fixed GCC release warnings and set QT_HOME to /usr in Make.rules
Diffstat (limited to 'cpp/src/IceGrid/ServerCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerCache.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceGrid/ServerCache.cpp b/cpp/src/IceGrid/ServerCache.cpp index 8d6cf543a5e..d05fb627dc6 100644 --- a/cpp/src/IceGrid/ServerCache.cpp +++ b/cpp/src/IceGrid/ServerCache.cpp @@ -727,7 +727,7 @@ ServerEntry::loadCallback(const ServerPrx& proxy, const AdapterPrxDict& adpts, i ServerInfo destroy; int timeout = -1; bool synced = false; - bool noRestart; + bool noRestart = false; { Lock sync(*this); @@ -804,7 +804,7 @@ void ServerEntry::destroyCallback() { ServerInfo load; - bool noRestart; + bool noRestart = false; SessionIPtr session; { @@ -853,7 +853,7 @@ ServerEntry::exception(const Ice::Exception& ex) { ServerInfo load; SessionIPtr session; - bool noRestart; + bool noRestart = false; bool remove = false; int timeout = -1; |