diff options
author | Mark Spruiell <mes@zeroc.com> | 2014-06-13 10:06:29 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2014-06-13 10:06:29 -0700 |
commit | 69c46db2fb9f03a4b730f8da1bd6e03d4ba68895 (patch) | |
tree | a755e1e123ac50a31729e51ebb375a92e86f1303 /java/src/Ice/ConnectionI.java | |
parent | SSL Cipher test fix for OpenSSL (diff) | |
download | ice-69c46db2fb9f03a4b730f8da1bd6e03d4ba68895.tar.bz2 ice-69c46db2fb9f03a4b730f8da1bd6e03d4ba68895.tar.xz ice-69c46db2fb9f03a4b730f8da1bd6e03d4ba68895.zip |
initial commit of C# transport changes
Diffstat (limited to 'java/src/Ice/ConnectionI.java')
-rw-r--r-- | java/src/Ice/ConnectionI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/Ice/ConnectionI.java b/java/src/Ice/ConnectionI.java index fb2c0ce8a33..a39905470ac 100644 --- a/java/src/Ice/ConnectionI.java +++ b/java/src/Ice/ConnectionI.java @@ -2348,7 +2348,7 @@ public final class ConnectionI extends IceInternal.EventHandler implements Conne { return IceInternal.SocketOperation.None; } - else if(_state == StateClosingPending && _writeStream.pos() == _writeStream.size()) + else if(_state == StateClosingPending && _writeStream.pos() == 0) { // Message wasn't sent, empty the _writeStream, we're not going to send more data. OutgoingMessage message = _sendStreams.getFirst(); |