diff options
author | Marc Laukien <marc@zeroc.com> | 2003-02-14 16:30:22 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2003-02-14 16:30:22 +0000 |
commit | c7c7b166bd1861c69dbdb9065a33931a9b0f3763 (patch) | |
tree | d427b99822c4b781baf3ad20ab852bf8a86962ef /cpp/src/Ice/Connection.cpp | |
parent | docu fixes; config&README fixes (diff) | |
download | ice-c7c7b166bd1861c69dbdb9065a33931a9b0f3763.tar.bz2 ice-c7c7b166bd1861c69dbdb9065a33931a9b0f3763.tar.xz ice-c7c7b166bd1861c69dbdb9065a33931a9b0f3763.zip |
fix
Diffstat (limited to 'cpp/src/Ice/Connection.cpp')
-rw-r--r-- | cpp/src/Ice/Connection.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/Connection.cpp b/cpp/src/Ice/Connection.cpp index 66187162a4a..3fc002bd188 100644 --- a/cpp/src/Ice/Connection.cpp +++ b/cpp/src/Ice/Connection.cpp @@ -828,7 +828,10 @@ IceInternal::Connection::readable() const void IceInternal::Connection::read(BasicStream& stream) { - _transceiver->read(stream, 0); + if(_transceiver) + { + _transceiver->read(stream, 0); + } // // Updating _acmAbsoluteTimeout is to expensive here, because we |