subsequent block has data - IsEnd is false

Resolves #249
This commit is contained in:
Ben Adams 2015-10-08 18:13:22 -04:00
parent 0b36382448
commit 9d251cdb54
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure
{
if (block.Start < block.End)
{
return true;
return false; // subsequent block has data - IsEnd is false
}
block = block.Next;
}