Merge branch 'master' into release

This commit is contained in:
Jesse McConnell 2011-10-06 17:00:34 -05:00
commit 6dc33497d9
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ public class HttpConnection extends AbstractConnection implements Dumpable
long filled = _parser.parseAvailable();
io += filled;
if (_parser.isIdle() && _endp.isInputShutdown())
if (_parser.isIdle() && (_endp.isInputShutdown() || !_endp.isOpen()))
throw new EOFException();
}