diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2014-10-01 08:39:20 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2014-10-01 08:39:20 -0230 |
commit | ffff73a172b8de5f33c0d1d1f23d011808d601a1 (patch) | |
tree | ea0dac9203ffdaafaf2f37d7ab635098515b31fc /cpp/src | |
parent | IceGridGUI: discovery endpoints fixes and improvements (diff) | |
download | ice-ffff73a172b8de5f33c0d1d1f23d011808d601a1.tar.bz2 ice-ffff73a172b8de5f33c0d1d1f23d011808d601a1.tar.xz ice-ffff73a172b8de5f33c0d1d1f23d011808d601a1.zip |
Added missing ConnectionI::setCallback fix to JS
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/ConnectionI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp index d52e0867124..6e807000c36 100644 --- a/cpp/src/Ice/ConnectionI.cpp +++ b/cpp/src/Ice/ConnectionI.cpp @@ -1180,7 +1180,7 @@ Ice::ConnectionI::setCallback(const ConnectionCallbackPtr& callback) bool closed = false; { IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this); - if(_state > StateClosing) + if(_state >= StateClosed) { closed = true; return; |