From 6f506ba988b6b1b44820e6e5cfe300b83bcbfa32 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Thu, 8 Oct 2015 18:13:22 -0400 Subject: [PATCH] subsequent block has data - IsEnd is false Resolves #249 --- .../Infrastructure/MemoryPoolIterator2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs index 467db4993d..b8f3a9e86d 100644 --- a/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs +++ b/src/Microsoft.AspNet.Server.Kestrel/Infrastructure/MemoryPoolIterator2.cs @@ -55,7 +55,7 @@ namespace Microsoft.AspNet.Server.Kestrel.Infrastructure { if (block.Start < block.End) { - return true; + return false; // subsequent block has data - IsEnd is false } } return true;