diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-01-28 11:27:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-01-28 11:27:42 +0100 |
commit | b369bc6e58619a45ffda496804b56e64dd4f7ed9 (patch) | |
tree | 89bf52f7882e2b0e73dcdbcb284644c546810eac | |
parent | bug 3676 - bug in default value for structs (diff) | |
download | ice-b369bc6e58619a45ffda496804b56e64dd4f7ed9.tar.bz2 ice-b369bc6e58619a45ffda496804b56e64dd4f7ed9.tar.xz ice-b369bc6e58619a45ffda496804b56e64dd4f7ed9.zip |
Fixed bug 3674 - failure introduced by parse header fixes
-rw-r--r-- | cs/src/Ice/ConnectionI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cs/src/Ice/ConnectionI.cs b/cs/src/Ice/ConnectionI.cs index 021313db534..a61158f59b6 100644 --- a/cs/src/Ice/ConnectionI.cs +++ b/cs/src/Ice/ConnectionI.cs @@ -1988,7 +1988,7 @@ namespace Ice } Debug.Assert(_transceiver != null); - bool parseHeader = _stream.isEmpty() || _stream.pos() < IceInternal.Protocol.headerSize; + bool parseHeader = _stream.isEmpty() || _stream.pos() <= IceInternal.Protocol.headerSize; // // Complete an asynchronous read operation if necessary. This may raise a SocketException |