diff options
author | Benoit Foucher <benoit@zeroc.com> | 2009-01-30 15:39:36 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2009-01-30 15:39:36 +0100 |
commit | 5e0dc54ab76a0af70a4e65eb7ea618de494fdc1d (patch) | |
tree | 4a4cd33719636f51f5d4527f617019e8489801a8 /java/src/IceInternal/ThreadPool.java | |
parent | Bug 3547. Re-enable call to the patch function for null instances because Ice... (diff) | |
download | ice-5e0dc54ab76a0af70a4e65eb7ea618de494fdc1d.tar.bz2 ice-5e0dc54ab76a0af70a4e65eb7ea618de494fdc1d.tar.xz ice-5e0dc54ab76a0af70a4e65eb7ea618de494fdc1d.zip |
Fixed bug 3669 and an infinite loop bug if a read failed with DatagramLimitException
Diffstat (limited to 'java/src/IceInternal/ThreadPool.java')
-rw-r--r-- | java/src/IceInternal/ThreadPool.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/java/src/IceInternal/ThreadPool.java b/java/src/IceInternal/ThreadPool.java index ea80b046a77..f75ebdfecc1 100644 --- a/java/src/IceInternal/ThreadPool.java +++ b/java/src/IceInternal/ThreadPool.java @@ -524,7 +524,6 @@ public final class ThreadPool } catch(Ice.DatagramLimitException ex) // Expected. { - handler._stream.pos(0); handler._stream.resize(0, true); continue; } @@ -550,7 +549,6 @@ public final class ThreadPool _instance.initializationData().logger.warning( "datagram connection exception:\n" + ex + "\n" + handler.toString()); } - handler._stream.pos(0); handler._stream.resize(0, true); } else |