diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-25 20:06:25 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-25 20:06:25 +0000 |
commit | 3f3791278b242ba1ac025a0b3de70c64df04ffdb (patch) | |
tree | f4d0a427fcb45d9a9b1b2b5744237957d08b2dfd /cpp/src | |
parent | thread promotion fix (diff) | |
download | ice-3f3791278b242ba1ac025a0b3de70c64df04ffdb.tar.bz2 ice-3f3791278b242ba1ac025a0b3de70c64df04ffdb.tar.xz ice-3f3791278b242ba1ac025a0b3de70c64df04ffdb.zip |
fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/Ice/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Connection.cpp b/cpp/src/Ice/Connection.cpp index 93615e6e4ba..c7f331f81e1 100644 --- a/cpp/src/Ice/Connection.cpp +++ b/cpp/src/Ice/Connection.cpp @@ -1104,8 +1104,8 @@ IceInternal::Connection::message(BasicStream& stream, const ThreadPoolPtr& threa catch(const LocalException& ex) { IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this); - threadPool->promoteFollower(); setState(StateClosed, ex); + threadPool->promoteFollower(); return; } |