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:
Greg Wilkins 2011-06-29 04:38:47 +00:00
parent c2a6df4c47
commit 5c9fe5b13e
1 changed files with 3 additions and 2 deletions

View File

@ -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