350642 Dont close SCEP during NIOBuffer manipulation
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3437 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
c2a6df4c47
commit
5c9fe5b13e
|
@ -174,7 +174,6 @@ public class ChannelEndPoint implements EndPoint
|
|||
if (len<0 && isOpen() && !isInputShutdown())
|
||||
shutdownInput();
|
||||
}
|
||||
|
||||
catch (IOException x)
|
||||
{
|
||||
try
|
||||
|
@ -185,7 +184,9 @@ public class ChannelEndPoint implements EndPoint
|
|||
{
|
||||
Log.ignore(xx);
|
||||
}
|
||||
throw x;
|
||||
|
||||
if (len>=0)
|
||||
throw x;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue