Merge pull request #250 from benaadams/patch-2

subsequent block has data - IsEnd is false
This commit is contained in:
Louis DeJardin 2015-10-08 15:23:17 -07:00
commit 774ce2dc9f
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;
}